Skip to content
Snippets Groups Projects
Commit c9d0497b authored by Oliver Sander's avatar Oliver Sander
Browse files

[dunecontrol]

- make sure that the module is not a local one before checking if it
  is installed
- fix FS#1100

[[Imported from SVN: r6777]]
parent 8c251010
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,8 @@ parse_control() {
# - source module: ${path}/dune.module
# and there is a file ${path}/${name}.pc.in
local path="$(canonicalpath "$1")"
if test -f $path/../../../lib/dunecontrol/${name}/dune.module; then
if test ! -f $path/dune.module -a \
-f $path/../../../lib/dunecontrol/${name}/dune.module; then
path=$(canonicalname "$path/../../../")
export module_inst="yes"
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