]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] yacc: fix botch-up in latest merge
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 16 Feb 2012 22:33:44 +0000 (23:33 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 16 Feb 2012 22:52:43 +0000 (23:52 +0100)
* lib/am/yacc.am: Fix rules badly botched by the recent huge
merge 'v1.11-1987-gf85330b'.

lib/am/yacc.am

index e2a5bea8f50f064642ade913f9a4995cb3848bb4..ac784df0002d2dc5b77d5ad8e9793ed528682707 100644 (file)
@@ -44,7 +44,11 @@ endif %?FIRST%
 ?GENERIC?%EXT%%DERIVED-EXT%:
 ?!GENERIC?%OBJ%: %SOURCE%
 ?SUBDIROBJ?    %SILENT%test -d $(dir $@) || $(MKDIR_P) $(dir $@)
-?GENERIC?      %VERBOSE%$(am__skipyacc) \
--?!GENERIC??DIST_SOURCE?       %VERBOSE%$(am__skipyacc) \
-       $(SHELL) $(YLWRAP) $< y.tab.c %OBJ% y.tab.h %BASE%.h \
-       `echo %OBJ% | $(am__yacc_c2h)` y.output %BASE%.output -- %COMPILE%
+       %VERBOSE% \
+?GENERIC?      $(am__skipyacc) \
+?!GENERIC??DIST_SOURCE?        $(am__skipyacc) \
+       $(SHELL) $(YLWRAP) $< \
+         y.tab.c $@ \
+         y.tab.h `echo %OBJ% | $(am__yacc_c2h)` \
+         y.output %BASE%.output \
+         -- %COMPILE%