* Makefile.in: Change extension for gzip'd files from '.z' to
'.gz' per new FSF standard usage.
This commit is contained in:
parent
90fe361fdc
commit
1d2bb44589
2 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
|
||||
|
||||
* Makefile.in: Change extension for gzip'd files from '.z' to
|
||||
'.gz' per new FSF standard usage.
|
||||
|
||||
Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
|
||||
|
||||
* configure: put quotes around the final value of program_transform_name
|
||||
|
|
10
Makefile.in
10
Makefile.in
|
@ -1026,8 +1026,8 @@ make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
|
|||
ln -s proto-toplev gdb-$$VER; \
|
||||
echo "==> Making gdb-$$VER.tar.Z"; \
|
||||
tar cfh - gdb-$$VER | $(COMPRESS) -v >gdb-$$VER.tar.Z; \
|
||||
echo "==> Making gdb-$$VER.tar.z"; \
|
||||
tar cfh - gdb-$$VER | $(GZIP) -v -9 >gdb-$$VER.tar.z)
|
||||
echo "==> Making gdb-$$VER.tar.gz"; \
|
||||
tar cfh - gdb-$$VER | $(GZIP) -v -9 >gdb-$$VER.tar.gz)
|
||||
|
||||
# Make the testsuite archive separately.
|
||||
ln -s ../../gdb/proto-testsuite.dir/testsuite proto-toplev/gdb/testsuite
|
||||
|
@ -1044,11 +1044,11 @@ make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
|
|||
gdb-$$VER/config.sub gdb-$$VER/move-if-change \
|
||||
gdb-$$VER/gdb/testsuite | \
|
||||
$(COMPRESS) -v >gdb-$$VER-testsuite.tar.Z; \
|
||||
echo "==> Making gdb-$$VER-testsuite.tar.z"; \
|
||||
echo "==> Making gdb-$$VER-testsuite.tar.gz"; \
|
||||
tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
|
||||
gdb-$$VER/config.sub gdb-$$VER/move-if-change \
|
||||
gdb-$$VER/gdb/testsuite | \
|
||||
$(GZIP) -v -9 >gdb-$$VER-testsuite.tar.z)
|
||||
$(GZIP) -v -9 >gdb-$$VER-testsuite.tar.gz)
|
||||
|
||||
# When you use `make setup-dirs' or `make taz' you should always redefine
|
||||
# this macro.
|
||||
|
@ -1110,7 +1110,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo
|
|||
ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
|
||||
chmod og=u `find proto-toplev -print`
|
||||
(VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
|
||||
echo "==> Making $(TOOL)-$$VER.tar.z"; \
|
||||
echo "==> Making $(TOOL)-$$VER.tar.gz"; \
|
||||
ln -s proto-toplev $(TOOL)-$$VER; \
|
||||
tar cfh - $(TOOL)-$$VER \
|
||||
| $(GZIP) -v -9 >$(TOOL)-$$VER.tar.gz)
|
||||
|
|
Loading…
Reference in a new issue