summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_world_prepare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/ptxd_make_world_prepare.sh')
-rw-r--r--scripts/lib/ptxd_make_world_prepare.sh20
1 files changed, 19 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_world_prepare.sh b/scripts/lib/ptxd_make_world_prepare.sh
index 17793e258..8b83107cd 100644
--- a/scripts/lib/ptxd_make_world_prepare.sh
+++ b/scripts/lib/ptxd_make_world_prepare.sh
@@ -97,6 +97,24 @@ export -f ptxd_make_world_prepare_kconfig
#
+# prepare for perl modules
+#
+ptxd_make_world_prepare_perl() {
+ [ "${pkg_type}" != "target" ] && \
+ ptxd_bailout "only perl taget packages are supported"
+
+ ptxd_eval \
+ "${pkg_path}" \
+ "${pkg_env}" \
+ "${pkg_conf_env}" \
+ perl \
+ Makefile.PL \
+ "${pkg_conf_opt}"
+}
+export -f ptxd_make_world_prepare_perl
+
+
+#
# generic prepare
#
ptxd_make_world_prepare() {
@@ -115,7 +133,7 @@ ptxd_make_world_prepare() {
fi
case "${pkg_conf_tool}" in
- autoconf|cmake|qmake|kconfig)
+ autoconf|cmake|qmake|kconfig|perl)
cd -- "${pkg_build_dir}" &&
ptxd_make_world_prepare_"${pkg_conf_tool}" ;;
"NO") echo "prepare stage disabled." ;;