diff options
author | Konrad Weihmann <kweihmann@outlook.com> | 2020-06-02 22:52:41 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-03 15:15:43 -0700 |
commit | d8da3806aa67bbe345649cbda076ff7376c821b8 (patch) | |
tree | 30b3ac3a941672999f399de9e923fa4ce27db3e2 | |
parent | b582a91d720f3adf7a9023a61198c3bae0cfcd34 (diff) | |
download | meta-openembedded-d8da3806aa67bbe345649cbda076ff7376c821b8.tar.gz |
mpd: fix PACKAGECONFIG assignment
As ??= assignment will be overwritten by += in any case,
one can't define a default of PACKAGECONFIG in this recipe.
Previously the default setting was just overwritten by the += operation.
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.22.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.22.bb b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.22.bb index 133ee6e792..818b9271f9 100644 --- a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.22.bb +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.22.bb | |||
@@ -28,7 +28,7 @@ S = "${WORKDIR}/git" | |||
28 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" | 28 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" |
29 | 29 | ||
30 | PACKAGECONFIG ??= "alsa ao bzip2 daemon ffmpeg fifo flac fluidsynth iso9660 jack libsamplerate libwrap httpd mms mpg123 modplug sndfile upnp openal opus oss recorder vorbis wavpack zlib" | 30 | PACKAGECONFIG ??= "alsa ao bzip2 daemon ffmpeg fifo flac fluidsynth iso9660 jack libsamplerate libwrap httpd mms mpg123 modplug sndfile upnp openal opus oss recorder vorbis wavpack zlib" |
31 | PACKAGECONFIG += "${@bb.utils.contains('LICENSE_FLAGS', 'commercial', 'aac', '', d)}" | 31 | PACKAGECONFIG_append = " ${@bb.utils.contains('LICENSE_FLAGS', 'commercial', 'aac', '', d)}" |
32 | 32 | ||
33 | PACKAGECONFIG[aac] = "--enable-aac,--disable-aac,faad2" | 33 | PACKAGECONFIG[aac] = "--enable-aac,--disable-aac,faad2" |
34 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | 34 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" |