Skip to content
Snippets Groups Projects
Commit 3701dd0f authored by Christian Engwer's avatar Christian Engwer
Browse files

fix module search (see FS#388)

[[Imported from SVN: r5195]]
parent 3e6172cc
No related branches found
No related tags found
No related merge requests found
......@@ -148,19 +148,13 @@ export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$(canonicalpath $0)/../lib/pkgconfig"
# search for modules, both installed and src modules
find_modules_in_path
echo "FOUND_MODULES=$FOUND_MODULES"
# get the real module names
MODULES=""
for i in $FOUND_MODULES; do
mod=$(eval echo \$NAME_$i)
MODULES="$SRC_MODULES$mod "
echo "$i ... MODULES=$MODULES" >&2
MODULES="$MODULES$mod "
done
echo "MODULES=$MODULES" >&2
if [ "$MODULES" = "" ]; then
echo "ERROR:">&2
echo " No dune modules were found!">&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