diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-07 20:47:27 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-07 20:47:27 +0100 |
commit | 5f3c1c3b4c75409070f8a0f32b27650ef4d39864 (patch) | |
tree | 633044bc6ee360967ecf6a8179c2e35be7825c01 /package/perl/Makefile | |
parent | e003adf78fb6a05f82387954dee6612d6b917df7 (diff) |
avoid usage of host perl by f.e. firefox
Diffstat (limited to 'package/perl/Makefile')
-rw-r--r-- | package/perl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/perl/Makefile b/package/perl/Makefile index 30d579b22..ed5090ea2 100644 --- a/package/perl/Makefile +++ b/package/perl/Makefile @@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk PKG_NAME:= perl PKG_VERSION:= 5.18.1 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_MD5SUM:= 304cb5bd18e48c44edd6053337d3386d PKG_DESCR:= Perl interpreter PKG_SECTION:= lang @@ -33,7 +33,7 @@ host-build: perl-hostinstall: $(CP) ${WRKBUILD}/miniperl $(STAGING_HOST_DIR)/usr/bin - $(CP) ${WRKBUILD}/perl $(STAGING_HOST_DIR)/usr/bin + $(CP) ${WRKBUILD}/perl $(STAGING_HOST_DIR)/usr/bin/perl.host do-configure: sed \ @@ -58,7 +58,7 @@ do-build: do-install: (cd ${WRKBUILD}; $(CP) miniperl.target miniperl) - (cd ${WRKBUILD}; $(STAGING_HOST_DIR)/usr/bin/perl installperl --destdir=${WRKINST}) + (cd ${WRKBUILD}; $(STAGING_HOST_DIR)/usr/bin/perl.host installperl --destdir=${WRKINST}) perl-install: ${INSTALL_DIR} ${IDIR_PERL}/usr/bin |