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

Let duneproject find ALL installed modules.

Fixes flyspray #895

The problems was that INSTMODULE was overwritten in find_modules_in_path.
For MODULES (the non-installed ones) this was not a problems since new modules
were appended already in find_module.


[[Imported from SVN: r6393]]
parent 7815dace
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ find_modules_in_path
# get the real module names
MODULES=""
for i in $FOUND_MODULES; do
for i in $FOUNDMODULES; do
mod=$(eval echo \$NAME_$i)
MODULES="$MODULES$mod "
done
......
......@@ -166,16 +166,19 @@ find_modules_in_path() {
if test -d "$dir"; then
while read m; do
test -n "$m" && find_modules "$m"
TMPMODULES="$TMPMODULES$FM_MODULES$INSTMODULES"
done <<EOFM
$(find -H "$dir" -name $CONTROL | $GREP -v 'dune-[-_a-zA-Z]/dune-[-a-zA-Z_]*-[0-9]\{1,\}.[0-9]\{1,\}/')
EOFM
else
find_modules $dir
TMPMODULES="$TMPMODULES$FM_MODULES$INSTMODULES"
fi
done <<EOF
$(echo $DUNE_CONTROL_PATH | sed -e 's/:\+/:/g' | tr ':' '\n')
EOF
export FOUND_MODULES="$MODULES$INSTMODULES"
export FOUNDMODULES="$TMPMODULES"
export MODULES="$TMPMODULES"
fi
}
......@@ -194,7 +197,7 @@ find_modules() {
if test "$module_inst" = "yes"; then
export INSTMODULES="$MODULES$module "
else
export MODULES="$MODULES$module "
export FM_MODULES="$MODULES$module "
fi
else
echo "ERROR: '$1' is no $CONTROL file" >&2
......
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