diff options
author | Liu Ting-B28495 <ting.liu@freescale.com> | 2015-05-01 23:53:47 +0800 |
---|---|---|
committer | Zhenhua Luo <zhenhua.luo@freescale.com> | 2015-05-12 14:42:27 +0800 |
commit | 8a3e937f5655c4be7465358015916009d53ec8ce (patch) | |
tree | fdf7c6531e4d657e4ade054d923b9cac6a72a60e | |
parent | 9d382632fcb6cff2445625a3cba0a52413546a8f (diff) | |
download | meta-freescale-8a3e937f5655c4be7465358015916009d53ec8ce.tar.gz |
skmm-ep: use backquotes for command substitution
Signed-off-by: Liu Ting-B28495 <ting.liu@freescale.com>
-rw-r--r-- | meta-fsl-ppc/recipes-extended/skmm-ep/skmm-ep_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-fsl-ppc/recipes-extended/skmm-ep/skmm-ep_git.bb b/meta-fsl-ppc/recipes-extended/skmm-ep/skmm-ep_git.bb index fcbd2ed9..ca5d6734 100644 --- a/meta-fsl-ppc/recipes-extended/skmm-ep/skmm-ep_git.bb +++ b/meta-fsl-ppc/recipes-extended/skmm-ep/skmm-ep_git.bb | |||
@@ -18,8 +18,8 @@ S = "${WORKDIR}/git" | |||
18 | 18 | ||
19 | EXTRA_OEMAKE = 'MACHINE=${MACHINE}' | 19 | EXTRA_OEMAKE = 'MACHINE=${MACHINE}' |
20 | 20 | ||
21 | export LIBEDIT_CFLAGS="$(pkg-config --cflags libedit)" | 21 | export LIBEDIT_CFLAGS = "`pkg-config --cflags libedit`" |
22 | export LIBEDIT_LDFLAGS="$(pkg-config --libs --static libedit)" | 22 | export LIBEDIT_LDFLAGS = "`pkg-config --libs --static libedit`" |
23 | 23 | ||
24 | do_compile () { | 24 | do_compile () { |
25 | export ARCH=${TARGET_ARCH} | 25 | export ARCH=${TARGET_ARCH} |