This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[Automake] filename ending for the result of dist-bzip2


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]