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

[duneproject] Fixed quoting issues for directories with spaces.

parent eaedbeea
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ canonicalpath(){
echo Usage: canonicalpath path >&2
return 1
fi
dirname $(canonicalname "$1")
dirname "$(canonicalname "$1")"
}
pkg_config_dependencies(){
......@@ -145,10 +145,10 @@ echo
################## FIND AVAILABLE MODULES ##################
. $(canonicalpath $0)/../lib/dunemodules.lib
. "$(canonicalpath $0)/../lib/dunemodules.lib"
# create PKG_CONFIG_PATH for installed dune modules
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$(canonicalpath $0)/../lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:\"$(canonicalpath $0)/../lib/pkgconfig\""
# search for modules, both installed and src modules
find_modules_in_path
......
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