diff options
Diffstat (limited to 'meta/recipes-devtools/intltool')
-rw-r--r-- | meta/recipes-devtools/intltool/intltool-0.40.6/noperlcheck.patch | 40 | ||||
-rw-r--r-- | meta/recipes-devtools/intltool/intltool.inc | 3 | ||||
-rw-r--r-- | meta/recipes-devtools/intltool/intltool_0.40.6.bb | 4 |
3 files changed, 45 insertions, 2 deletions
diff --git a/meta/recipes-devtools/intltool/intltool-0.40.6/noperlcheck.patch b/meta/recipes-devtools/intltool/intltool-0.40.6/noperlcheck.patch new file mode 100644 index 0000000000..3d8b591a40 --- /dev/null +++ b/meta/recipes-devtools/intltool/intltool-0.40.6/noperlcheck.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | In the target case, we can't check if perl exists or try running it. If we | ||
2 | don't patch the code, the native perl location would be used, not the target | ||
3 | which is also incorrect. We therefore disable this code and rely on the | ||
4 | correct value of PERL being passed in. | ||
5 | |||
6 | RP 31/8/2011 | ||
7 | |||
8 | Upstream-Status: Inappropriate [OE specific] | ||
9 | |||
10 | Index: intltool-0.40.6/configure.in | ||
11 | =================================================================== | ||
12 | --- intltool-0.40.6.orig/configure.in 2011-08-31 11:21:13.061160535 +0100 | ||
13 | +++ intltool-0.40.6/configure.in 2011-08-31 11:22:44.991160885 +0100 | ||
14 | @@ -9,24 +9,10 @@ | ||
15 | aclocaldir='${datadir}'/aclocal | ||
16 | AC_SUBST(aclocaldir) | ||
17 | |||
18 | -AC_PATH_PROG(PERL, perl) | ||
19 | if test -z "$PERL"; then | ||
20 | - AC_MSG_ERROR([perl not found]) | ||
21 | -fi | ||
22 | -AC_MSG_CHECKING([for perl >= 5.8.1]) | ||
23 | -$PERL -e "use 5.8.1;" > /dev/null 2>&1 | ||
24 | -if test $? -ne 0; then | ||
25 | - AC_MSG_ERROR([perl 5.8.1 is required for intltool]) | ||
26 | -else | ||
27 | - PERL_VERSION="`$PERL -e \"printf '%vd', $^V\"`" | ||
28 | - AC_MSG_RESULT([$PERL_VERSION]) | ||
29 | -fi | ||
30 | -AC_MSG_CHECKING([for XML::Parser]) | ||
31 | -if `$PERL -e "require XML::Parser" 2>/dev/null`; then | ||
32 | - AC_MSG_RESULT([ok]) | ||
33 | -else | ||
34 | - AC_MSG_ERROR([XML::Parser perl module is required for intltool]) | ||
35 | + AC_MSG_ERROR([PERL variable not set]) | ||
36 | fi | ||
37 | +AC_SUBST(PERL) | ||
38 | |||
39 | AC_OUTPUT([ | ||
40 | Makefile | ||
diff --git a/meta/recipes-devtools/intltool/intltool.inc b/meta/recipes-devtools/intltool/intltool.inc index 7e11fc9da9..8d4bec5227 100644 --- a/meta/recipes-devtools/intltool/intltool.inc +++ b/meta/recipes-devtools/intltool/intltool.inc | |||
@@ -13,4 +13,7 @@ RRECOMMENDS_${PN}_virtclass-native = "" | |||
13 | 13 | ||
14 | inherit autotools pkgconfig perlnative | 14 | inherit autotools pkgconfig perlnative |
15 | 15 | ||
16 | export PERL = "${bindir}/env perl" | ||
17 | PERL_virtclass-native = "/usr/bin/env nativeperl" | ||
18 | |||
16 | BBCLASSEXTEND = "native" | 19 | BBCLASSEXTEND = "native" |
diff --git a/meta/recipes-devtools/intltool/intltool_0.40.6.bb b/meta/recipes-devtools/intltool/intltool_0.40.6.bb index 931122dac2..e9871fc098 100644 --- a/meta/recipes-devtools/intltool/intltool_0.40.6.bb +++ b/meta/recipes-devtools/intltool/intltool_0.40.6.bb | |||
@@ -1,13 +1,13 @@ | |||
1 | require intltool.inc | 1 | require intltool.inc |
2 | LICENSE="GPLv2" | 2 | LICENSE="GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
4 | PR = "r4" | 4 | PR = "r5" |
5 | 5 | ||
6 | SRC_URI_append = " file://intltool-nowarn-0.40.0.patch \ | 6 | SRC_URI_append = " file://intltool-nowarn-0.40.0.patch \ |
7 | ${NATIVEPATCHES} \ | 7 | ${NATIVEPATCHES} \ |
8 | " | 8 | " |
9 | 9 | ||
10 | NATIVEPATCHES = "" | 10 | NATIVEPATCHES = "file://noperlcheck.patch" |
11 | NATIVEPATCHES_virtclass-native = "file://use-nativeperl.patch" | 11 | NATIVEPATCHES_virtclass-native = "file://use-nativeperl.patch" |
12 | 12 | ||
13 | SRC_URI[md5sum] = "69bc0353323112f42ad4f9cf351bc3e5" | 13 | SRC_URI[md5sum] = "69bc0353323112f42ad4f9cf351bc3e5" |