[oe-commits] org.oe.dev python-efl.inc: remove bashisms to make the Ubuntu crew happy

mickeyl commit oe at amethyst.openembedded.net
Tue May 20 22:55:13 UTC 2008


python-efl.inc: remove bashisms to make the Ubuntu crew happy

Author: mickeyl at openembedded.org
Branch: org.openembedded.dev
Revision: b2a4a7fdee4979edfc6a17d3e6ff9a7ffeeb2ab9
ViewMTN: http://monotone.openembedded.org/revision/info/b2a4a7fdee4979edfc6a17d3e6ff9a7ffeeb2ab9
Files:
1
packages/python/python-efl.inc
Diffs:

#
# mt diff -r0423aa20e6813e1ee9357282a05d9578bb49c242 -rb2a4a7fdee4979edfc6a17d3e6ff9a7ffeeb2ab9
#
#
#
# patch "packages/python/python-efl.inc"
#  from [7a1e1c981a4d514c24d0cf695b0c335614b36bbb]
#    to [6829bace05e4f24bbf9f5d577fddd3e53ee419e3]
#
============================================================
--- packages/python/python-efl.inc	7a1e1c981a4d514c24d0cf695b0c335614b36bbb
+++ packages/python/python-efl.inc	6829bace05e4f24bbf9f5d577fddd3e53ee419e3
@@ -15,13 +15,13 @@ do_install_append() {
 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






More information about the Openembedded-commits mailing list