* Makefile.in: Add some extra semi-colons (needed if SHELL=bash).

This commit is contained in:
Per Bothner 1993-02-20 03:01:45 +00:00
parent cb46c4022f
commit 81246025fa
2 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,12 @@
Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
* Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
* README: Update for gdb-4.8 release.
* Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
gdb-xxx.tar.z (gzip'd) file also.
Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)

View File

@ -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