]> sourceware.org Git - automake.git/commitdiff
dist-zip fix
authorTom Tromey <tromey@redhat.com>
Thu, 24 Jul 1997 07:35:47 +0000 (07:35 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 24 Jul 1997 07:35:47 +0000 (07:35 +0000)
ChangeLog
automake.in

index f83adf84e631f6e9974780ed17c165c8f58b6ae6..23b1fb0c93c3e83d97691bab52bfb720cefda057 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,17 @@
 Thu Jul 24 00:52:02 1997  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (initialize_global_constants): Changed index names
+       in dist hash so that alternate dist targets will be generated.
+       Report from Glenn Amerine.
+
        Suggestion from Karl Berry:
        * automake.in (usage): Added short info line.
+
        * aclocal.in (usage): Updated bug-reporting address.  Added short
        info line.
 
        * automake.in (handle_emacs_lisp): Put contents of lisp-clean.am
-       into output.  From Karl Berry.
+       into output.  Report from Karl Berry.
 
 Sun Jun 22 14:01:59 1997  Tom Tromey  <tromey@cygnus.com>
 
index 73d17993132c83682c51e36c94f69f1f2f2d61d1..6dc5aefe4a63d918ec49810a2bcd025f5cf5111b 100755 (executable)
@@ -5241,13 +5241,13 @@ sub initialize_global_constants
     # Ignore return result from chmod, because it might give an error
     # if we chmod a symlink.
     $dist_header = "\t" . '-chmod -R a+r $(distdir)' . "\n";
-    $dist{'tarZ'} = ("\t"
+    $dist{'dist-tarZ'} = ("\t"
                     . '$(TAR) chf - $(distdir) | compress -c > $(distdir).tar.Z'
                     . "\n");
-    $dist{'shar'} = ("\t"
+    $dist{'dist-shar'} = ("\t"
                     . 'shar $(distdir) | gzip > $(distdir).shar.gz'
                     . "\n");
-    $dist{'zip'} = "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n";
+    $dist{'dist-zip'} = "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n";
     $dist{'dist'} = "\t" .  'GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)' . "\n";
     $dist_trailer = "\t" . 'rm -rf $(distdir)' . "\n";
 }
This page took 0.049361 seconds and 5 git commands to generate.