diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-08 15:25:45 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-08 15:25:45 +0300 |
commit | b1c7368f95e93ccdefdd0748e04398c26766f47f (patch) | |
tree | fbba0f79912d7d009776a1b7e89b746677fbd8df /src/xz/Makefile.am | |
parent | Windows: Make build.bash work without --enable-dynamic=no. (diff) | |
download | xz-b1c7368f95e93ccdefdd0748e04398c26766f47f.tar.xz |
Build: Add options to disable individual command line tools.
Diffstat (limited to 'src/xz/Makefile.am')
-rw-r--r-- | src/xz/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xz/Makefile.am b/src/xz/Makefile.am index e4ed59cf..10ceee75 100644 --- a/src/xz/Makefile.am +++ b/src/xz/Makefile.am @@ -69,7 +69,11 @@ dist_man_MANS = xz.1 ## Create symlinks for unxz and xzcat for convenience. Create symlinks also ## for lzma, unlzma, and lzcat for compatibility with LZMA Utils 4.32.x. -xzlinks = unxz xzcat lzma unlzma lzcat +xzlinks = unxz xzcat + +if COND_LZMALINKS +xzlinks += lzma unlzma lzcat +endif install-exec-hook: cd $(DESTDIR)$(bindir) && \ |