diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-04-25 13:32:35 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-04-25 13:32:35 +0300 |
commit | 8f804c29aa8471ccd6438ddca254092b8869ca52 (patch) | |
tree | ff0dc429ae3667eea2b03d4b8f27065ae70cda5c /Makefile.am | |
parent | Fix a memory leak by calling free(extra->data) in (diff) | |
download | xz-8f804c29aa8471ccd6438ddca254092b8869ca52.tar.xz |
Bumped version number to 4.999.3alpha. It will become 5.0.0
once we have a stable release (won't be very soon). The
version number is no longer related to version of LZMA SDK.
Made some small Automake-related changes to toplevel
Makefile.am and configure.ac.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 593fa3be..7ce5f95c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,6 @@ endif SUBDIRS += src po tests - EXTRA_DIST = \ m4 \ config.rpath \ @@ -33,4 +32,8 @@ EXTRA_DIST = \ COPYING.LGPLv2.1 ACLOCAL_AMFLAGS = -I m4 -AUTOMAKE_OPTIONS = foreign + +# This works with GNU tar and gives cleaner package than normal 'make dist'. +mydist: + TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=u+rw,go+r-w' \ + $(MAKE) dist-gzip |