summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_make_world_common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/ptxd_make_world_common.sh')
-rw-r--r--scripts/lib/ptxd_make_world_common.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_world_common.sh b/scripts/lib/ptxd_make_world_common.sh
index f563ec24e..580077253 100644
--- a/scripts/lib/ptxd_make_world_common.sh
+++ b/scripts/lib/ptxd_make_world_common.sh
@@ -247,10 +247,12 @@ ptxd_make_world_init() {
case "${pkg_conf_tool}" in
autoconf|cmake|qmake)
local conf_opt_ptr="ptx_conf_opt_${pkg_conf_tool}_${pkg_type}"
+ local conf_env_ptr="ptx_conf_env_${pkg_type}"
pkg_conf_opt="${pkg_conf_opt:-${!conf_opt_ptr}}"
+ pkg_conf_env="${pkg_conf_env:-${!conf_env_ptr}}"
- unset conf_opt_ptr
+ unset conf_opt_ptr conf_env_ptr
;;
*) ;;
esac