diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-06-16 18:55:52 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-06-16 18:55:52 +0000 |
commit | 000befdfb4e4003aa2b28bdf1f0fcd7a1962b76a (patch) | |
tree | 05ad78ca66a6351e2143af2346d5dad9685103a3 /Makefile.in | |
parent | fdc944a7fbc28c1050c108ea4dac6e1a7a3fb173 (diff) | |
download | fsf-binutils-gdb-000befdfb4e4003aa2b28bdf1f0fcd7a1962b76a.zip fsf-binutils-gdb-000befdfb4e4003aa2b28bdf1f0fcd7a1962b76a.tar.gz fsf-binutils-gdb-000befdfb4e4003aa2b28bdf1f0fcd7a1962b76a.tar.bz2 |
* Makefile.in (DISTBISONFILES): Remove.
(taz): Don't futz with DISTBISONFILES. Change BISON to use
$(DEFAULT_YACC).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index fb158e8..21fdd02 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1492,25 +1492,16 @@ ETC_SUPPORT= Makefile.in configure configure.in standards.texi \ # When you use `make setup-dirs' or `make taz' you should always redefine # this macro. SUPPORT_FILES = list-of-support-files-for-tool-in-question -# Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF). -DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in ld/Makefile.in .PHONY: taz taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \ texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo - # Make sure "diststuff" files get built properly. - for f in $(DISTBISONFILES) ; do \ - if [ -r $$f ]; then \ - sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \ - mv -f tmp $$f ; \ - else true; fi ; \ - done # Take out texinfo from a few places; make simple BISON=bison line. sed -e '/^all\.normal: /s/\all-texinfo //' \ -e '/^ install-texinfo /d' \ -e '/^BISON = `if/,/^$$/d' \ - -e '/^# BISON:/s/.*/BISON = bison -y/' \ + -e '/^# BISON:/s/.*/BISON = $(DEFAULT_YACC)/' \ <Makefile.in >tmp mv -f tmp Makefile.in # |