summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--Makefile.in5
2 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 6bb1a382..8979fc10 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,8 @@
# Makefile.am --- automake input file for systemtap
## process this file with automake to produce Makefile.in
+AUTOMAKE_OPTIONS = dist-bzip2
+
pkglibexecdir = ${libexecdir}/${PACKAGE}
AM_CPPFLAGS = -DPKGLIBDIR='"$(pkglibexecdir)"' -DPKGDATADIR='"${pkgdatadir}"'
diff --git a/Makefile.in b/Makefile.in
index e1ebd6aa..df9127ed 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -114,7 +114,7 @@ am__remove_distdir = \
{ test ! -d $(distdir) \
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr $(distdir); }; }
-DIST_ARCHIVES = $(distdir).tar.gz
+DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
@@ -206,6 +206,7 @@ sharedstatedir = @sharedstatedir@
stap_LIBS = @stap_LIBS@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
+AUTOMAKE_OPTIONS = dist-bzip2
pkglibexecdir = ${libexecdir}/${PACKAGE}
AM_CPPFLAGS = -DPKGLIBDIR='"$(pkglibexecdir)"' -DPKGDATADIR='"${pkgdatadir}"'
AM_CFLAGS = -std=gnu99 -D_GNU_SOURCE -fexceptions \
@@ -867,7 +868,6 @@ distdir: $(DISTFILES)
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
$(am__remove_distdir)
-
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
$(am__remove_distdir)
@@ -887,6 +887,7 @@ dist-zip: distdir
dist dist-all: distdir
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
$(am__remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then