* automake.in (initialize_global_constants): Use $(TAR), not tar.
authorTom Tromey <tromey@redhat.com>
Sat, 10 Apr 1999 18:24:42 +0000 (18:24 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 10 Apr 1999 18:24:42 +0000 (18:24 +0000)
ChangeLog
automake.in

index 235ef7e..bc6149f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-04-10  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (initialize_global_constants): Use $(TAR), not tar.
+
        * automake.in (handle_ltlibraries): Allow check_LTLIBRARIES.
 
        * automake.in (lang_yacc_finish): Added missing `&'.
index 6851eb4..e489543 100755 (executable)
@@ -6484,7 +6484,7 @@ sub initialize_global_constants
                     . "\n");
     $dist{'dist-zip'} = "\t" . 'zip -rq $(distdir).zip $(distdir)' . "\n";
     $dist{'dist'} = ("\t"
-                    .  'tar ch$(AMTARFLAGS)f - $(distdir) | GZIP=$(GZIP_ENV) gzip -c > $(distdir).tar.gz'
+                    .  '$(TAR) ch$(AMTARFLAGS)f - $(distdir) | GZIP=$(GZIP_ENV) gzip -c > $(distdir).tar.gz'
                     . "\n");
     $dist_trailer = "\t" . '-rm -rf $(distdir)' . "\n";
 }