diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-07-06 10:36:04 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-07-06 10:36:04 +0300 |
commit | 5f16ef4abf220028a9ddbcb138217597a9455f62 (patch) | |
tree | 947d9b3bf100985d278c00d3b2a1098054434b7f /src/xz | |
parent | Major update to the xzgrep and other scripts based on (diff) | |
download | xz-5f16ef4abf220028a9ddbcb138217597a9455f62.tar.xz |
Use sed instead of $(SED) so that we don't need to
use AC_PROG_SED. We don't do anything fancy with sed,
so this should work OK. libtool 2.2 sets SED but 1.5
doesn't, so $(SED) happened to work when using libtool 2.2.
Diffstat (limited to 'src/xz')
-rw-r--r-- | src/xz/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xz/Makefile.am b/src/xz/Makefile.am index ba64d72b..8716752f 100644 --- a/src/xz/Makefile.am +++ b/src/xz/Makefile.am @@ -64,9 +64,9 @@ xzlinks = unxz xzcat lzma unlzma lzcat install-exec-hook: cd $(DESTDIR)$(bindir) && \ - target=`echo xz | $(SED) '$(transform)'`$(EXEEXT) && \ + target=`echo xz | sed '$(transform)'`$(EXEEXT) && \ for name in $(xzlinks); do \ - link=`echo $$name | $(SED) '$(transform)'` && \ + link=`echo $$name | sed '$(transform)'` && \ rm -f $$link && \ $(LN_S) $$target $$link; \ done @@ -74,6 +74,6 @@ install-exec-hook: uninstall-hook: cd $(DESTDIR)$(bindir) && \ for name in $(xzlinks); do \ - link=`echo $$name | $(SED) '$(transform)'` && \ + link=`echo $$name | sed '$(transform)'` && \ rm -f $$link; \ done |