Skip to content
Snippets Groups Projects
Commit 03d85736 authored by Markus Blatt's avatar Markus Blatt
Browse files

[bugfix,dunecontrol] Fixes check whether to path --with-<dune-module> to configure


The check was whether $module_inst is yes, but what we actually want to check
is $INT_$module. This patch fixes this and forces configure to use pkg-config
for the installed module again. Only this allows us to extract custom libdirs.
(cherry picked from commit 0c2857db)

Signed-off-by: default avatarMarkus Blatt <markus@dr-blatt.de>
parent 88e63cd8
No related branches found
No related tags found
No related merge requests found
......@@ -643,7 +643,7 @@ run_default_configure () {
if test -d "$path/$BUILDDIR"; then
PARAMS="$PARAMS \"--with-$name=$path/$BUILDDIR\""
else
if test x$module_inst != xyes; then
if test x$(eval echo \$INST_$mod) != xyes; then
PARAMS="$PARAMS \"--with-$name=$path\""
fi
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment