diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-12-28 09:34:12 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 10:41:57 +0000 |
commit | 4c75b4f973b156bfeabedbe79a7bcfaaf9fe5bfa (patch) | |
tree | 89698352baf331ecc892bef806904e3786871065 /meta/recipes-multimedia/flac | |
parent | 421e927bd453259f4b3cdbd1676f6e12f97bf34f (diff) | |
download | openembedded-core-contrib-4c75b4f973b156bfeabedbe79a7bcfaaf9fe5bfa.tar.gz |
flac: remove unrecognised options
Remove --disable-id3libtest and --without-id3lib which had been removed
from flac for many years, here is the log from flac:
commit e31d9eb05cb82bd5f9cab1e6ad5295ddad22bcab
Author: Josh Coalson <jcoalson@users.sourceforce.net>
Date: Tue Sep 28 00:23:57 2004 +0000
remove id3 support from the plugins
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-multimedia/flac')
-rw-r--r-- | meta/recipes-multimedia/flac/flac_1.2.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/flac/flac_1.2.1.bb b/meta/recipes-multimedia/flac/flac_1.2.1.bb index 7fd7a0315f0..37c7a978346 100644 --- a/meta/recipes-multimedia/flac/flac_1.2.1.bb +++ b/meta/recipes-multimedia/flac/flac_1.2.1.bb @@ -32,13 +32,13 @@ S = "${WORKDIR}/flac-${PV}" inherit autotools gettext -EXTRA_OECONF = "--disable-oggtest --disable-id3libtest \ +EXTRA_OECONF = "--disable-oggtest \ --with-ogg-libraries=${STAGING_LIBDIR} \ --with-ogg-includes=${STAGING_INCDIR} \ --without-xmms-prefix \ --without-xmms-exec-prefix \ --without-libiconv-prefix \ - --without-id3lib" + " EXTRA_OECONF += "${@bb.utils.contains("TUNE_FEATURES", "altivec", " --enable-altivec", " --disable-altivec", d)}" |