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

Bugfix: Allow specification of installed modules found with pkg-config

[[Imported from SVN: r6737]]
parent 947d7edc
Branches
Tags
No related merge requests found
......@@ -78,6 +78,11 @@ modulesexist(){
break
fi
done
if [ "$found" = "0" ]; then
# Module not found in list, try pkg-config
pkg-config $module &> /dev/null
found=$?
fi
if [ "$found" = "0" ]; then
echo "ERROR:">&2
echo "Module with name $dep was not found" >&2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment