This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
[Automake] filename ending for the result of dist-bzip2
- To: automake at gnu dot org
- Subject: [Automake] filename ending for the result of dist-bzip2
- From: Alexandre Duret-Lutz <duret_g at lrde dot epita dot fr>
- Date: 15 Sep 2000 10:10:21 +0200
- List-Id: <automake.gnu.org>
- Organization: LRDE/EPITA http://www.lrde.epita.fr/
Hi,
I've just tried the CVS version of automake, and I'm
wondering: why does the dest-bzip2 target create fubar.bz2
instead of fubar.tar.bz2?
Index: ChangeLog
===================================================================
RCS file: /cvs/automake/automake/ChangeLog,v
retrieving revision 1.889
diff -u -r1.889 ChangeLog
--- ChangeLog 2000/08/30 17:54:33 1.889
+++ ChangeLog 2000/09/15 07:56:37
@@ -1,3 +1,8 @@
+2000-09-15 Alexandre Duret-Lutz <duret_g@epita.fr>
+
+ * automake.in (initialize_global_constants): End the
+ result of dist-bzip2 with tar.bz2, not bz2.
+
2000-08-30 Tom Tromey <tromey@cygnus.com>
Fix for PR automake/72:
Index: automake.in
===================================================================
RCS file: /cvs/automake/automake/automake.in,v
retrieving revision 1.795
diff -u -r1.795 automake.in
--- automake.in 2000/08/30 17:54:33 1.795
+++ automake.in 2000/09/15 07:56:42
@@ -6706,7 +6706,7 @@
|| chmod -R a+r $(distdir)
';
$dist{'dist-bzip2'} = ("\t"
- . '$(AMTAR) chof - $(distdir) | bzip2 -9 -c > $(distdir).bz2'
+ . '$(AMTAR) chof - $(distdir) | bzip2 -9 -c > $(distdir).tar.bz2'
. "\n");
$dist{'dist-tarZ'} = ("\t"
. '$(AMTAR) chof - $(distdir) | compress -c > $(distdir).tar.Z'
Thanks,
--
Alexandre Duret-Lutz