]> sourceware.org Git - automake.git/commitdiff
* automake.in (initialize_global_constants): Remove zip file
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Tue, 27 Apr 1999 12:34:05 +0000 (12:34 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Tue, 27 Apr 1999 12:34:05 +0000 (12:34 +0000)
before re-creating it.
Reported by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>

ChangeLog
automake.in

index 5b3605d88d4fe0debfaed95c41dd4a408bf0cb4f..018b6963a26cf46bfb6460b40969e914bd2cb30f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1999-04-27  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * automake.in (initialize_global_constants): Remove zip file
+       before re-creating it.
+       Reported by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
+
        * texinfos.am (uninstall-info): Look for info file in srcdir, just 
        like in install-info-am.
        Reported by Tudor Hulubei <tudor@cs.unh.edu>
index 1c3e0719ff9d4832f5a272392f43b0d75af4a419..39172d86e79cbc32aabfe8e65d89e463719a356c 100755 (executable)
@@ -6647,7 +6647,8 @@ sub initialize_global_constants
     $dist{'dist-shar'} = ("\t"
                     . 'shar $(distdir) | gzip > $(distdir).shar.gz'
                     . "\n");
-    $dist{'dist-zip'} = "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n";
+    $dist{'dist-zip'} = ("\t" . '-rm -f $(distdir).zip' . "\n" .
+                        "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n");
     $dist{'dist'} = ("\t"
                     .  '$(AMTAR) ch$(AMTARFLAGS)f - $(distdir) | GZIP=$(GZIP_ENV) gzip -c > $(distdir).tar.gz'
                     . "\n");
This page took 0.039292 seconds and 5 git commands to generate.