From: Michael Lauer Date: Tue, 20 May 2008 22:51:32 +0000 (+0000) Subject: python-efl.inc: remove bashisms to make the Ubuntu crew happy X-Git-Tag: Release-2010-05/1~6882^2~12^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c9f423b3a53df50cb053f3786f75038cab6dd77;p=openembedded.git python-efl.inc: remove bashisms to make the Ubuntu crew happy --- diff --git a/packages/python/python-efl.inc b/packages/python/python-efl.inc index 1cbec65fa5..0147813115 100644 --- a/packages/python/python-efl.inc +++ b/packages/python/python-efl.inc @@ -15,13 +15,13 @@ S = "${WORKDIR}/${PN}" do_install_append() { if [ -e examples ]; then for i in `find examples -name "*.edc"`; do - pushd `dirname $i` + cd ${S}/`dirname $i` echo "Generating .edj file for $i..." edje_cc `basename $i` echo "Removing sources in this directory..." rm -f *.edc *.png *.ttf *.jpeg - popd done + cd ${S} install -d ${D}${datadir}/${PN}/ cp -a examples ${D}${datadir}/${PN}/ find ${D}${datadir}/${PN}/examples -name "CVS" | xargs rm -rf