summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiu Ting-B28495 <ting.liu@freescale.com>2015-05-01 23:54:02 +0800
committerZhenhua Luo <zhenhua.luo@freescale.com>2015-05-12 16:24:46 +0800
commit2b682cde75ee4ebe3d91f64389e49b2cef0f5a0d (patch)
tree917fe86c70d88d7c316d93198f4392dc74042b02
parentd839236cafa924b0a0d8218199d2afe01f69942a (diff)
downloadmeta-fsl-ppc-2b682cde75ee4ebe3d91f64389e49b2cef0f5a0d.tar.gz
skmm-ep: use backquotes for command substitution
Signed-off-by: Liu Ting-B28495 <ting.liu@freescale.com>
-rw-r--r--recipes-extended/skmm-ep/skmm-ep_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/skmm-ep/skmm-ep_git.bb b/recipes-extended/skmm-ep/skmm-ep_git.bb
index fcbd2ed..ca5d673 100644
--- a/recipes-extended/skmm-ep/skmm-ep_git.bb
+++ b/recipes-extended/skmm-ep/skmm-ep_git.bb
@@ -18,8 +18,8 @@ S = "${WORKDIR}/git"
18 18
19EXTRA_OEMAKE = 'MACHINE=${MACHINE}' 19EXTRA_OEMAKE = 'MACHINE=${MACHINE}'
20 20
21export LIBEDIT_CFLAGS="$(pkg-config --cflags libedit)" 21export LIBEDIT_CFLAGS = "`pkg-config --cflags libedit`"
22export LIBEDIT_LDFLAGS="$(pkg-config --libs --static libedit)" 22export LIBEDIT_LDFLAGS = "`pkg-config --libs --static libedit`"
23 23
24do_compile () { 24do_compile () {
25 export ARCH=${TARGET_ARCH} 25 export ARCH=${TARGET_ARCH}