diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-06-19 15:39:50 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-19 15:39:50 +0000 |
commit | b8014d57e775e2a06dfd5dba67c88fa4fb874c67 (patch) | |
tree | 907ef9986813eb5141f963d05f59079aba55d7cc /packages/perl/perl.inc | |
parent | 316c1248d81df02fe60d562741f7547756b5c449 (diff) |
perl 5.8.7: Allow perl to be built without the perl shared library. This is
to enable building on sh3/sh4 where toolchain issues prevent this from
working. The changes check the perl config.sh for useshrplib to determine if
the shared library is being made before doing things with it during install.
Diffstat (limited to 'packages/perl/perl.inc')
-rw-r--r-- | packages/perl/perl.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/perl/perl.inc b/packages/perl/perl.inc index 52418903a2..ac4bfefd32 100644 --- a/packages/perl/perl.inc +++ b/packages/perl/perl.inc @@ -46,7 +46,9 @@ do_compile() { do_install() { oe_runmake install - mv ${D}/${libdir}/perl5/${PV}/${TARGET_ARCH}-${TARGET_OS}/CORE/libperl.so ${D}/${libdir}/libperl.so.${PV} + # Make sure the shared library is configured before trying to move it + grep -q "useshrplib='false'" ${S}/config.sh || + mv ${D}/${libdir}/perl5/${PV}/${TARGET_ARCH}-${TARGET_OS}/CORE/libperl.so ${D}/${libdir}/libperl.so.${PV} ( cd ${D}/usr/bin/; rm perl; ln -s perl${PV} perl ) } |