Send inn-committers mailing list submissions to
        inn-committers@lists.isc.org

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.isc.org/mailman/listinfo/inn-committers
or, via email, send a message with subject or body 'help' to
        inn-committers-requ...@lists.isc.org

You can reach the person managing the list at
        inn-committers-ow...@lists.isc.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of inn-committers digest..."


Today's Topics:

   1. INN commit: trunk/innfeed (Makefile) (INN Commit)
   2. INN commit: branches/2.5/innfeed (Makefile) (INN Commit)


----------------------------------------------------------------------

Message: 1
Date: Sun, 30 Dec 2012 10:01:28 -0800 (PST)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk/innfeed (Makefile)
Message-ID: <20121230180128.578d667...@hope.eyrie.org>

    Date: Sunday, December 30, 2012 @ 10:01:28
  Author: eagle
Revision: 9453

Fix the innfeed configfile parser generation rule

Using $? in the rule, now that the extra dependency has been added,
caused the wrong arguments to be passed to bison.  Pass the correct
arguments explicitly.

This still seems to run bison twice for reasons that I can't figure
out, but that should be harmless.

Modified:
  trunk/innfeed/Makefile

----------+
 Makefile |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: Makefile
===================================================================
--- Makefile    2012-12-29 21:12:11 UTC (rev 9452)
+++ Makefile    2012-12-30 18:01:28 UTC (rev 9453)
@@ -52,9 +52,10 @@
 INNFEEDLIBS    = $(LIBSTORAGE) $(LIBHIST) $(LIBINN) $(STORAGE_LIBS) $(LIBS)
 
 config_y.c config_y.h: configfile.y
-       $(YACC) -d $?
+       $(YACC) -d configfile.y
        mv y.tab.h config_y.h
        mv y.tab.c config_y.c
+       touch config_y.h
 config_y.h: config_y.c
 
 config_l.c: configfile.l



------------------------------

Message: 2
Date: Sun, 30 Dec 2012 10:01:39 -0800 (PST)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: branches/2.5/innfeed (Makefile)
Message-ID: <20121230180139.6881167...@hope.eyrie.org>

    Date: Sunday, December 30, 2012 @ 10:01:39
  Author: eagle
Revision: 9454

Fix the innfeed configfile parser generation rule

Using $? in the rule, now that the extra dependency has been added,
caused the wrong arguments to be passed to bison.  Pass the correct
arguments explicitly.

This still seems to run bison twice for reasons that I can't figure
out, but that should be harmless.

Modified:
  branches/2.5/innfeed/Makefile

----------+
 Makefile |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: Makefile
===================================================================
--- Makefile    2012-12-30 18:01:28 UTC (rev 9453)
+++ Makefile    2012-12-30 18:01:39 UTC (rev 9454)
@@ -55,9 +55,10 @@
 INNFEEDLIBS    = $(LIBSTORAGE) $(LIBHIST) $(LIBINN) $(STORAGE_LIBS) $(LIBS)
 
 config_y.c config_y.h: configfile.y
-       $(YACC) -d $?
+       $(YACC) -d configfile.y
        mv y.tab.h config_y.h
        mv y.tab.c config_y.c
+       touch config_y.h
 config_y.h: config_y.c
 
 config_l.c: configfile.l



------------------------------

_______________________________________________
inn-committers mailing list
inn-committers@lists.isc.org
https://lists.isc.org/mailman/listinfo/inn-committers

End of inn-committers Digest, Vol 46, Issue 4
*********************************************

Reply via email to