diff options
author | Fred Fish <fnf@specifix.com> | 1993-06-18 01:45:34 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-06-18 01:45:34 +0000 |
commit | 1d2bb445898a2511db544b7ea6765051f51522c8 (patch) | |
tree | 488faf10672791117847d43f185f17f6b591656a /Makefile.in | |
parent | 90fe361fdc6ae7913463f1a9527c026203a71488 (diff) | |
download | gdb-1d2bb445898a2511db544b7ea6765051f51522c8.zip gdb-1d2bb445898a2511db544b7ea6765051f51522c8.tar.gz gdb-1d2bb445898a2511db544b7ea6765051f51522c8.tar.bz2 |
* Makefile.in: Change extension for gzip'd files from '.z' to
'.gz' per new FSF standard usage.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 55c27c5..43caa5d 100644 --- a/Makefile.in +++ b/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) |