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>
This commit is contained in:
parent
e77354d28f
commit
3d1530f467
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user