Skip to content
Snippets Groups Projects
Commit f51b9833 authored by Martin Nolte's avatar Martin Nolte
Browse files

foreported the real fix for the undefined macro problem

[[Imported from SVN: r5563]]
parent ba4d59ce
Branches releases/1.2.1
Tags v1.2.1
No related merge requests found
......@@ -197,15 +197,10 @@ sort_dependencies() {
# did we find a module file for this mopdule?
if test "x$(eval echo \$HAVE_$m)" != "x"; then
eval deps=\$DEPS_$m
deps=`echo "$deps" | sed 's/,/ /g;s/([^)]*)/ /'`
deps=`echo "$deps" | sed 's/,/ /g;s/([^)]*)/ /g'`
for name in $deps; do
case "$name" in
'('*) ;;
*) dep=`fix_variable_name $name`
_sort_module $dep
;;
esac
dep=`fix_variable_name $name`
_sort_module $dep
done
else
eval echo ERROR: could not find module \$NAME_$m >&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