mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
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:
committed by
Thomas Petazzoni
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
|
||||
|
||||
Reference in New Issue
Block a user