[#7708] Bug in libsnmp-ruby1.8 — Hadmut Danisch <hadmut@...>

Hi,

8 messages 2006/04/11
[#7709] Re: Bug in libsnmp-ruby1.8 — Eric Hodel <drbrain@...7.net> 2006/04/11

On Apr 11, 2006, at 6:23 AM, Hadmut Danisch wrote:

[#7770] Re: possible defect in array.c — "Brown, Warren" <warrenbrown@...>

> rb_range_beg_len (in range.c) does set beg and len.

13 messages 2006/04/26
[#7771] Re: possible defect in array.c — "Pat Eyler" <rubypate@...> 2006/04/26

On 4/26/06, Brown, Warren <warrenbrown@aquire.com> wrote:

Re: [PATCH] parse.y: literal strings for tokens

From: Robin Stocker <robin@...>
Date: 2006-04-09 11:15:42 UTC
List: ruby-core #7696
Christian Neukirchen wrote:
> nobu@ruby-lang.org writes:
>> This depends on GNU make?
> Most of all, it breaks "make distclean"...

I'm not sure what you mean. Do you mean that if someone stops make 
before the temporary files are removed again and then runs "make 
distclean", the files stay there?

By the way, the whole paragraph looks like this:

-  $(YACC) $<
+ifeq ($(firstword $(YACC)), bison)
+  cp $< $<.tmp
+else
+# If we don't have a bison yacc, strip the literal strings
+  sed '/^%token/ s|"[^"]*"||' $< > $<.tmp
+endif
+  $(YACC) $<.tmp
    sed '/^#/s|y\.tab\.c|$@|' y.tab.c > $@
-  rm -f y.tab.c
+  rm -f $<.tmp y.tab.c

So the y.tab.c file also breaks "make distclean"?

   Robin Stocker

In This Thread