diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-03-07 11:43:31 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-03-12 11:22:40 +0100 |
commit | b7fbd492adcfcfc66bb42ba93142d2b3caf8e774 (patch) | |
tree | 221872832aa600eb9f8e092829ad04b3397212e8 | |
parent | 655cf47c63a14b26bd2e819d2abee148f697ac2d (diff) | |
download | meta-openembedded-b7fbd492adcfcfc66bb42ba93142d2b3caf8e774.tar.gz |
geany: fix build on perl-less machines
while testing this patch a hidden configure error was detected [1]
autoreconf: running: gnu-configize
Can't load '/home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/perl-native/perl/5.14.3/auto/Data/Dumper/Dumper.so' for module Data::Dumper: /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/perl-native/perl/5.14.3/auto/Data/Dumper/Dumper.so: undefined symbol: PL_charclass at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/perl-native/perl/5.14.3/XSLoader.pm line 71.
at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/perl-native/perl/5.14.3/Data/Dumper.pm line 36
Compilation failed in require at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/share/autoconf/Autom4te/C4che.pm line 33.
BEGIN failed--compilation aborted at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/share/autoconf/Autom4te/C4che.pm line 33.
Compilation failed in require at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/bin/autom4te line 37.
BEGIN failed--compilation aborted at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/bin/autom4te line 37.
autoreconf: Leaving directory `.'
but this seems unrelated to geany.
[1] http://lists.linuxtogo.org/pipermail/openembedded-core/2013-March/036745.html
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/geany/geany_1.22.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-devtools/geany/geany_1.22.bb b/meta-oe/recipes-devtools/geany/geany_1.22.bb index e0b5df509..f56c8f306 100644 --- a/meta-oe/recipes-devtools/geany/geany_1.22.bb +++ b/meta-oe/recipes-devtools/geany/geany_1.22.bb | |||
@@ -3,9 +3,9 @@ HOMEPAGE = "http://www.geany.org/" | |||
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c107cf754550e65755c42985a5d4e9c9" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c107cf754550e65755c42985a5d4e9c9" |
5 | DEPENDS = "gtk+" | 5 | DEPENDS = "gtk+" |
6 | PR = "r1" | 6 | PR = "r2" |
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools pkgconfig perlnative |
9 | 9 | ||
10 | SRC_URI = " \ | 10 | SRC_URI = " \ |
11 | http://download.geany.org/${PN}-${PV}.tar.bz2 \ | 11 | http://download.geany.org/${PN}-${PV}.tar.bz2 \ |