summaryrefslogtreecommitdiff
path: root/alsactl
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2011-08-31 22:27:10 +0200
committerClemens Ladisch <clemens@ladisch.de>2011-08-31 22:31:55 +0200
commite80b015689ce7a632c8cf57a29bd703eef4edbbc (patch)
treea0c593b3014307b97b3e0f8be11b43597be1af2b /alsactl
parent0131ab6a67e18ae3c30b7b3fabc2fdf1592f075c (diff)
fix use of $(SED)
The alsactl Makefile used 'sed $(SED)' which is going to failed when SED is actually set. Replaced that with '$(SED)', and a few 'sed' calls in alsaconf Makefile as well. Added AC_PROG_SED to configure to have it set. Fixes: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5363 Fixes: http://bugs.gentoo.org/show_bug.cgi?id=366587 Signed-off-by: Michał Górny <mgorny@gentoo.org> Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'alsactl')
-rw-r--r--alsactl/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/alsactl/Makefile.am b/alsactl/Makefile.am
index 5cfc415..c434e44 100644
--- a/alsactl/Makefile.am
+++ b/alsactl/Makefile.am
@@ -34,7 +34,7 @@ install-data-hook:
endif
edit = \
- sed $(SED) -r 's,@sbindir\@,$(sbindir),g' < $< > $@ || rm $@
+ $(SED) -r 's,@sbindir\@,$(sbindir),g' < $< > $@ || rm $@
alsa-store.service: alsa-store.service.in
$(edit)