diff options
author | Gary Thomas <gary@mlbassoc.com> | 2014-11-05 07:57:38 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-09 10:21:24 +0000 |
commit | 77d62cca2723c85bed0a6ac936948bceb81e9f11 (patch) | |
tree | 307be522bf5eb446843d4105d4de8a24c8d51fa0 /meta/recipes-devtools/python/fix-path.inc | |
parent | fb4d7ece3b5e67bcab133e8d6f17d2257d04049e (diff) | |
download | poky-77d62cca2723c85bed0a6ac936948bceb81e9f11.tar.gz |
python-pygtk: Clean up incorrect "fix"
This patch removes most of "dirty fix #1" which is no longer needed
(no dependency on python-pygobject-dev exists). A side effect is
that the pygtk code generator will also be installed.
Merge 'fix-path.inc' into this recipe as it is not used by any other
recipe.
(From OE-Core rev: 02985d315f71126d3af789b0666dbf428f586e4b)
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/fix-path.inc')
-rw-r--r-- | meta/recipes-devtools/python/fix-path.inc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-devtools/python/fix-path.inc b/meta/recipes-devtools/python/fix-path.inc deleted file mode 100644 index 0738c59ada..0000000000 --- a/meta/recipes-devtools/python/fix-path.inc +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | do_install_append() { | ||
2 | for i in `find ${D} -name "*.py"` ; do \ | ||
3 | sed -i -e s:${D}::g $i | ||
4 | done | ||
5 | |||
6 | for i in `find ${D} -name "*.la"` ; do \ | ||
7 | sed -i -e s:${STAGING_LIBDIR}:${libdir}:g $i | ||
8 | done | ||
9 | |||
10 | if test -e ${D}${bindir} ; then | ||
11 | for i in ${D}${bindir}/* ; do \ | ||
12 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i | ||
13 | done | ||
14 | fi | ||
15 | |||
16 | if test -e ${D}${sbindir} ; then | ||
17 | for i in ${D}${sbindir}/* ; do \ | ||
18 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i | ||
19 | done | ||
20 | fi | ||
21 | } | ||
22 | |||