diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-04-15 04:19:22 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-15 04:19:22 -0600 |
commit | 3a35dcc477f00c079d28136efeb1b880e15a19d4 (patch) | |
tree | 5471344f1d280f92f3294d427d57cae61c9f738e /Makefile.in | |
parent | 4db83042b6d7152ef8a5d1bbc0e66290c1c2fe93 (diff) | |
download | gcc-3a35dcc477f00c079d28136efeb1b880e15a19d4.zip gcc-3a35dcc477f00c079d28136efeb1b880e15a19d4.tar.gz gcc-3a35dcc477f00c079d28136efeb1b880e15a19d4.tar.bz2 |
configure: Define DEFAULT_M4 by searching PATH.
* configure: Define DEFAULT_M4 by searching PATH.
* Makefile.in: Use DEFAULT_M4.
Forgot to commit Makefile.in for this change.
From-SVN: r19223
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 11187f2..ee776a0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -100,6 +100,7 @@ GZIPPROG = gzip # These values are substituted by configure. DEFAULT_YACC = yacc DEFAULT_LEX = lex +DEFAULT_M4 = m4 BISON = `if [ -f $$r/bison/bison ] ; then \ echo $$r/bison/bison -L $$s/bison/ ; \ @@ -121,7 +122,7 @@ LEX = `if [ -f $$r/flex/flex ] ; \ M4 = `if [ -f $$r/m4/m4 ] ; \ then echo $$r/m4/m4 ; \ - else echo m4 ; fi` + else echo ${DEFAULT_M4} ; fi` MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \ then echo $$r/texinfo/makeinfo/makeinfo ; \ |