diff options
Diffstat (limited to 'openembedded/packages/perl')
-rw-r--r-- | openembedded/packages/perl/perl_5.8.7.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openembedded/packages/perl/perl_5.8.7.bb b/openembedded/packages/perl/perl_5.8.7.bb index bb8e0c5174..e78a4829af 100644 --- a/openembedded/packages/perl/perl_5.8.7.bb +++ b/openembedded/packages/perl/perl_5.8.7.bb | |||
@@ -3,6 +3,7 @@ MAINTAINER="David Karlstrom <daka@thg.se>" | |||
3 | include perl.inc | 3 | include perl.inc |
4 | 4 | ||
5 | SRC_URI += "file://config.sh-armeb-linux \ | 5 | SRC_URI += "file://config.sh-armeb-linux \ |
6 | file://config.sh-arm-linux \ | ||
6 | file://config.sh-i386-linux" | 7 | file://config.sh-i386-linux" |
7 | 8 | ||
8 | PR = "r14" | 9 | PR = "r14" |
@@ -17,6 +18,12 @@ do_configure() { | |||
17 | cp ${WORKDIR}/config.sh-i686-linux . | 18 | cp ${WORKDIR}/config.sh-i686-linux . |
18 | cp ${WORKDIR}/config.sh-i386-linux . | 19 | cp ${WORKDIR}/config.sh-i386-linux . |
19 | cp ${WORKDIR}/config.sh-armeb-linux . | 20 | cp ${WORKDIR}/config.sh-armeb-linux . |
21 | # nslu2 LE uclibc builds do not work with the default config.sh | ||
22 | if test "${MACHINE}" = nslu2 | ||
23 | then | ||
24 | rm -f ./config.sh-arm-linux | ||
25 | cp ${WORKDIR}/config.sh-arm-linux . | ||
26 | fi | ||
20 | for i in config.sh-*-linux; do | 27 | for i in config.sh-*-linux; do |
21 | a="`echo $i|sed -e 's,^config.sh-,,; s,-linux$,,'`" | 28 | a="`echo $i|sed -e 's,^config.sh-,,; s,-linux$,,'`" |
22 | newfile="`echo $i|sed -e 's,-linux$,-linux-uclibc,g'`" | 29 | newfile="`echo $i|sed -e 's,-linux$,-linux-uclibc,g'`" |