summaryrefslogtreecommitdiff
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-04-15 01:58:23 +0000
committerJim Meyering <jim@meyering.net>1993-04-15 01:58:23 +0000
commit29c0442cadced638d3f26b50db5a6328ad7b82d9 (patch)
tree2a8e508d291fa2d0705b3d3f1cc7cc2efcf02c61 /lib/Makefile.in
parent0c6e5c710bac25a3676d0c04b185b70a7bfcf8b7 (diff)
downloadcoreutils-29c0442cadced638d3f26b50db5a6328ad7b82d9.tar.xz
merge with 3.4.7
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index fb21e13dc..affeea23d 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -78,12 +78,13 @@ libfu.a: $(OBJECTS)
# is the only way to reliably do a parallel make.
getdate.c: getdate.y
@echo expect 9 shift/reduce conflicts
- -bison -o getdate.c $(srcdir)/getdate.y || yacc $(srcdir)/getdate.y
+ -bison -o getdate.c $(srcdir)/getdate.y || $(YACC) $(srcdir)/getdate.y
test ! -f y.tab.c || mv y.tab.c getdate.c
# Make the rename atomic, in case sed is interrupted and later rerun.
posixtm.c: posixtm.y
- -bison -o posixtm.tab.c $(srcdir)/posixtm.y || yacc $(srcdir)/posixtm.y
+ -bison -o posixtm.tab.c $(srcdir)/posixtm.y \
+ || $(YACC) $(srcdir)/posixtm.y
test ! -f y.tab.c || mv y.tab.c posixtm.tab.c
sed -e 's/yy/zz/g' posixtm.tab.c > tposixtm.c
mv tposixtm.c posixtm.c