diff options
author | Fred Fish <fnf@specifix.com> | 1993-04-06 23:32:16 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-04-06 23:32:16 +0000 |
commit | 8521640391c3fa9fd5184d392cf787812678b7d0 (patch) | |
tree | 36ee1e56aea472fcc24e022c875174376837cd4c | |
parent | 7788e8221fb425e5549e3219684fee88ad997e91 (diff) | |
download | gdb-8521640391c3fa9fd5184d392cf787812678b7d0.zip gdb-8521640391c3fa9fd5184d392cf787812678b7d0.tar.gz gdb-8521640391c3fa9fd5184d392cf787812678b7d0.tar.bz2 |
Couple of more minor tweaks to gdb.tar.Z target.
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 64c5cc2..6230ca1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -63,6 +63,7 @@ CXXFLAGS = -g -O RANLIB = ranlib NM = nm GZIP = gzip +COMPRESS = compress # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove. BISON = `if [ -f $${rootme}/byacc/byacc ] ; \ @@ -872,11 +873,11 @@ make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex 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 + 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) # When you use `make setup-dirs' or `make taz' you should always redefine # this macro. |