From: Radu Moisan Date: Thu, 11 Jul 2013 12:47:45 +0000 (+0000) Subject: rxvt-unicode: Check existence of acinclude.m4 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~36699 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3f892cba2d4f23d6b994b907ce06badd5ad2f0c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git rxvt-unicode: Check existence of acinclude.m4 copy should only happen if acinclude.m4 doesn't exist Signed-off-by: Radu Moisan --- 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 9a4761757a4..e417957f615 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 \ --with-x=${STAGING_DIR_HOST}${prefix}" do_configure_prepend () { - cp ${S}/aclocal.m4 ${S}/acinclude.m4 + if [ ! -e ${S}/acinclude.m4 ]; then + cp ${S}/aclocal.m4 ${S}/acinclude.m4 + fi } do_compile_prepend () {