diff options
author | Holger Freyther <zecke@selfish.org> | 2006-08-06 19:37:22 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-08-06 19:37:22 +0000 |
commit | ccec27323e3f552fcd1af2ff90fe099be0c88401 (patch) | |
tree | 0f8f32106cf5a77e403065c7eb7a577a79f8baa7 /packages/perl/perl-native_5.8.4.bb | |
parent | 690e9e12869eb453929481ec5f999bff1e36c9b3 (diff) |
clases/cpan.bbclass,packages/perl: add EXTRA_CPANFLAGS, fix native
Add EXTRA_CPANFLAGS to cpan.bbclass, similiar to EXTRA_OECONF
and EXTRA_OEMAKE
Use this in libxml-parser-perl-native to point to the expat
include and libraries
perl-native inherits native already. No need to use BUILD_CC,
BUILD_FOO, BUILD_LDFLAGS but use LDFLAGS and CC directly. LDFLAGS
has rpath already removed...
Diffstat (limited to 'packages/perl/perl-native_5.8.4.bb')
-rw-r--r-- | packages/perl/perl-native_5.8.4.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/perl/perl-native_5.8.4.bb b/packages/perl/perl-native_5.8.4.bb index a4065e999b..4ec0c0f494 100644 --- a/packages/perl/perl-native_5.8.4.bb +++ b/packages/perl/perl-native_5.8.4.bb @@ -13,9 +13,9 @@ S = "${WORKDIR}/perl-${PV}" do_configure () { ./Configure \ - -Dcc="${BUILD_CC}" \ - -Dcflags="${BUILD_CFLAGS}" \ - -Dldflags="${BUILD_LDFLAGS} -Wl,-rpath,${STAGING_LIBDIR}" \ + -Dcc="${CC}" \ + -Dcflags="${CFLAGS}" \ + -Dldflags="${LDFLAGS}" \ -Dusethreads \ -Duselargefiles \ -Dprefix=${prefix} \ |