perlmod: fix ability to build module out-of-feed

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
This commit is contained in:
Philip Prindeville 2018-09-23 13:36:37 -06:00
parent 53a912201c
commit a5a4eafc93
2 changed files with 6 additions and 2 deletions

View File

@ -11,7 +11,7 @@ include perlver.mk
PKG_NAME:=perl
PKG_VERSION:=$(PERL_VERSION)
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE_URL:=\
https://cpan.metacpan.org/src/5.0 \

View File

@ -1,7 +1,11 @@
# This makefile simplifies perl module builds.
#
include ../perl/perlver.mk
ifeq ($(origin PERL_INCLUDE_DIR),undefined)
PERL_INCLUDE_DIR:=$(dir $(lastword $(MAKEFILE_LIST)))
endif
include $(PERL_INCLUDE_DIR)/perlver.mk
ifneq ($(PKG_NAME),perl)
PKG_VERSION:=$(PKG_VERSION)+perl$(PERL_VERSION2)