diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-05-20 22:51:32 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-05-20 22:51:32 +0000 |
commit | 5c9f423b3a53df50cb053f3786f75038cab6dd77 (patch) | |
tree | c895fa176b375d0d64b22e9c3d8c4c7f7820528c | |
parent | a6f54174f6b7fa826719cf013e0bfcdbd0e67373 (diff) |
python-efl.inc: remove bashisms to make the Ubuntu crew happy
-rw-r--r-- | packages/python/python-efl.inc | 4 |
1 files changed, 2 insertions, 2 deletions
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 |