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

fiy quoting, this should fix issue #164

[[Imported from SVN: r4653]]
parent 27a11666
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,12 @@ EOF
#
sort_modules() {
for m in "$@"; do
_sort_module $m
if test "x$(eval echo \$HAVE_$m)" != "x"; then
_sort_module $m
else
echo "ERROR: could not find module $dep"
exit 1
fi
done
if test x"$ONLY" != x; then
SORTEDMODULES=$ONLY
......@@ -169,7 +174,7 @@ fix_and_assign() {
if ! check_modname $name; then
echo ERROR: error in assignment. $name is not a valid variabel name.
fi
export $name=$(echo "$@" | sed -e 's/-/_/g')
export $name="$(echo "$@" | sed -e 's/-/_/g')"
}
#
......
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