diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-28 15:12:55 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-28 15:12:55 +0000 |
commit | 957b04b5f573fc1b1bd02e5c9a76aa57547b8b8c (patch) | |
tree | a617a7ca7af695c4bac1e60ba8022a8852cb8d3b /meta-extras | |
parent | a1c0e2c8edc475e356e574d105cf914954e737b4 (diff) | |
download | poky-957b04b5f573fc1b1bd02e5c9a76aa57547b8b8c.tar.gz |
zope: fix build with new layout of staging
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4968 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras')
-rw-r--r-- | meta-extras/packages/zope/zope_3.3.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-extras/packages/zope/zope_3.3.1.bb b/meta-extras/packages/zope/zope_3.3.1.bb index 6a6e283fca..283cb18d0e 100644 --- a/meta-extras/packages/zope/zope_3.3.1.bb +++ b/meta-extras/packages/zope/zope_3.3.1.bb | |||
@@ -15,14 +15,14 @@ do_configure() { | |||
15 | } | 15 | } |
16 | 16 | ||
17 | do_compile() { | 17 | do_compile() { |
18 | oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | 18 | oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} STAGING_INCDIR=${STAGING_INCDIR} STAGING_LIBDIR=${STAGING_LIBDIR} |
19 | } | 19 | } |
20 | 20 | ||
21 | PYTHON_MAJMIN = "2.5" | 21 | PYTHON_MAJMIN = "2.5" |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |
24 | install -d ${D}${libdir}/python${PYTHON_MAJMIN} | 24 | install -d ${D}${libdir}/python${PYTHON_MAJMIN} |
25 | oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | 25 | oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} STAGING_INCDIR=${STAGING_INCDIR} STAGING_LIBDIR=${STAGING_LIBDIR} |
26 | mv ${D}${libdir}/python/* ${D}${libdir}/python${PYTHON_MAJMIN} | 26 | mv ${D}${libdir}/python/* ${D}${libdir}/python${PYTHON_MAJMIN} |
27 | } | 27 | } |
28 | 28 | ||