summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato
diff options
context:
space:
mode:
authorRadu Moisan <radu.moisan@intel.com>2013-07-11 12:47:45 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-13 18:23:34 +0100
commitc1b0faefa5566b41a876cdf9b0882042e9973d85 (patch)
tree184a51fb610ecb3a5c75687ed50365b4a2be99d1 /meta/recipes-sato
parent7d013f32abce0961cebd65b3530fc2904fdfda7d (diff)
downloadpoky-c1b0faefa5566b41a876cdf9b0882042e9973d85.tar.gz
rxvt-unicode: Check existence of acinclude.m4
copy should only happen if acinclude.m4 doesn't exist (From OE-Core rev: f3f892cba2d4f23d6b994b907ce06badd5ad2f0c) Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r--meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.18.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.18.bb b/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.18.bb
index 9a4761757a..e417957f61 100644
--- a/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.18.bb
+++ b/meta/recipes-sato/rxvt-unicode/rxvt-unicode_9.18.bb
@@ -42,7 +42,9 @@ EXTRA_OECONF = "--enable-menubar --enable-xim \
42 --with-x=${STAGING_DIR_HOST}${prefix}" 42 --with-x=${STAGING_DIR_HOST}${prefix}"
43 43
44do_configure_prepend () { 44do_configure_prepend () {
45 cp ${S}/aclocal.m4 ${S}/acinclude.m4 45 if [ ! -e ${S}/acinclude.m4 ]; then
46 cp ${S}/aclocal.m4 ${S}/acinclude.m4
47 fi
46} 48}
47 49
48do_compile_prepend () { 50do_compile_prepend () {