diff options
| author | Arnout Vandecappelle <arnout@mind.be> | 2015-07-12 16:35:29 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-15 00:42:01 +0200 |
| commit | 3d1530f46727c198a688fc4c69e29d22596b0c3b (patch) | |
| tree | e68047b7521dac2b51764f7b1910ba3bea7b9b5e /package/mpg123 | |
| parent | e77354d28f8087fed75b2fe66fbd50799e68eca7 (diff) | |
| download | buildroot-3d1530f46727c198a688fc4c69e29d22596b0c3b.tar.gz buildroot-3d1530f46727c198a688fc4c69e29d22596b0c3b.zip | |
mpg123: replace $(shell ...) call with $(subst ...)
There's no reason to use a shell here.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/mpg123')
| -rw-r--r-- | package/mpg123/mpg123.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mpg123/mpg123.mk b/package/mpg123/mpg123.mk index 4c534e2b1a..171cbde0be 100644 --- a/package/mpg123/mpg123.mk +++ b/package/mpg123/mpg123.mk @@ -69,7 +69,7 @@ MPG123_CONF_OPTS += --with-default-audio=alsa MPG123_DEPENDENCIES += alsa-lib endif -MPG123_CONF_OPTS += --with-audio=$(shell echo $(MPG123_AUDIO) | tr ' ' ,) +MPG123_CONF_OPTS += --with-audio=$(subst $(space),$(comma),$(MPG123_AUDIO)) ifeq ($(BR2_PACKAGE_LIBTOOL),y) MPG123_DEPENDENCIES += libtool |

