summaryrefslogtreecommitdiffstats
path: root/meta-multimedia
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-08 18:00:54 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2015-07-30 21:00:26 +0200
commit5f044775691777f6b165e1dd861631248f9a9df1 (patch)
tree688be2ffc199726508b716a14c4bbf2ff27ab21b /meta-multimedia
parent738005819666619ce9be5023790a9f78699ed807 (diff)
downloadmeta-openembedded-5f044775691777f6b165e1dd861631248f9a9df1.tar.gz
gst-ffmpeg: Add explict getVar expansion parameter
Bitbake is likely to require this parameter in future, add the default value. Patch generated with the command: sed -e 's:\(getVar([^,()]*\)\s*):\1, False):g' -i `grep -ril getVar *` Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r--meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg_0.10.13.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg_0.10.13.bb b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg_0.10.13.bb
index 7bd7ec33d..8909f37c8 100644
--- a/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg_0.10.13.bb
+++ b/meta-multimedia/recipes-multimedia/gstreamer-0.10/gst-ffmpeg_0.10.13.bb
@@ -79,8 +79,8 @@ GSTREAMER_DEBUG ?= "--disable-debug"
79FFMPEG_EXTRA_CONFIGURE = "--with-ffmpeg-extra-configure" 79FFMPEG_EXTRA_CONFIGURE = "--with-ffmpeg-extra-configure"
80# pass --cpu for powerpc. get cpu name by stripping "ppc" or "ppc64" 80# pass --cpu for powerpc. get cpu name by stripping "ppc" or "ppc64"
81# from DEFAULTTUNE 81# from DEFAULTTUNE
82FFMPEG_CPU_powerpc = "--cpu=${@d.getVar('DEFAULTTUNE')[3:]}" 82FFMPEG_CPU_powerpc = "--cpu=${@d.getVar('DEFAULTTUNE', False)[3:]}"
83FFMPEG_CPU_powerpc64 = "--cpu=${@d.getVar('DEFAULTTUNE')[5:]}" 83FFMPEG_CPU_powerpc64 = "--cpu=${@d.getVar('DEFAULTTUNE', False)[5:]}"
84FFMPEG_EXTRA_CONFIGURE_COMMON_ARG = "--target-os=linux ${FFMPEG_CPU} \ 84FFMPEG_EXTRA_CONFIGURE_COMMON_ARG = "--target-os=linux ${FFMPEG_CPU} \
85 --cc='${CC}' --as='${CC}' --ld='${CC}' --nm='${NM}' --ar='${AR}' \ 85 --cc='${CC}' --as='${CC}' --ld='${CC}' --nm='${NM}' --ar='${AR}' \
86 --ranlib='${RANLIB}' \ 86 --ranlib='${RANLIB}' \