diff options
author | roland <roland> | 2006-02-23 22:27:52 +0000 |
---|---|---|
committer | roland <roland> | 2006-02-23 22:27:52 +0000 |
commit | 42b926b7ae5640a59e5eafd1c0508c2f2b6b5dbb (patch) | |
tree | ace85952fb86e2d40029abd46fca685e2cf8a170 | |
parent | 58cf0567b5d6f06e320d169be722eefb3df2b2c1 (diff) | |
download | systemtap-steved-42b926b7ae5640a59e5eafd1c0508c2f2b6b5dbb.tar.gz systemtap-steved-42b926b7ae5640a59e5eafd1c0508c2f2b6b5dbb.tar.xz systemtap-steved-42b926b7ae5640a59e5eafd1c0508c2f2b6b5dbb.zip |
2006-02-23 Roland McGrath <roland@redhat.com>
* Makefile.am (AUTOMAKE_OPTIONS): New variable, set dist-bzip2.
* Makefile.in: Regenerated.
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 5 |
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 |