diff options
author | Per Bothner <per@bothner.com> | 1993-02-20 03:01:45 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1993-02-20 03:01:45 +0000 |
commit | 81246025faf4761fb3a1f75d17de63479539a3f8 (patch) | |
tree | 62f54b8e21e84bfc89f8c8488ed21e835a72e5e6 /Makefile.in | |
parent | cb46c4022f3e79444a7574d82feed911669bfd6e (diff) | |
download | gdb-81246025faf4761fb3a1f75d17de63479539a3f8.zip gdb-81246025faf4761fb3a1f75d17de63479539a3f8.tar.gz gdb-81246025faf4761fb3a1f75d17de63479539a3f8.tar.bz2 |
* Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index c3216e9..f171a3f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -62,6 +62,7 @@ CXX = gcc CXXFLAGS = -g -O RANLIB = ranlib NM = nm +GZIP = gzip BISON = `if [ -f $${rootme}/byacc/byacc ] ; \ then echo $${rootme}/byacc/byacc ; \ @@ -148,7 +149,7 @@ AS_FOR_TARGET = ` \ echo $(AS); \ else \ t='$(program_transform_name)'; echo as | sed -e '' $$t ; \ - fi \ + fi; \ fi` AR_FOR_TARGET = ` \ @@ -159,7 +160,7 @@ AR_FOR_TARGET = ` \ echo $(AR); \ else \ t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \ - fi \ + fi; \ fi` RANLIB_FOR_TARGET = ` \ @@ -170,7 +171,7 @@ RANLIB_FOR_TARGET = ` \ echo $(RANLIB); \ else \ t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \ - fi \ + fi; \ fi` NM_FOR_TARGET = ` \ @@ -181,7 +182,7 @@ NM_FOR_TARGET = ` \ echo $(NM); \ else \ t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \ - fi \ + fi; \ fi` # FIXME: This is badly named. @@ -1584,12 +1585,13 @@ make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex mkdir proto-toplev/texinfo ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ + ln -s ../../texinfo/tex3patch proto-toplev/texinfo/ chmod og=u `find proto-toplev -print` (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \ echo "==> Making gdb-$$VER.tar.Z"; \ ln -s proto-toplev gdb-$$VER; \ tar cfh - gdb-$$VER \ | compress -v >gdb-$$VER.tar.Z) - + $(GZIP) -d <gdb-$$VER.tar.Z | $(GZIP) -9 -v >gdb-$$VER.tar.z # end of Makefile.in |