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

reverted patch 5558; fixed the problem, though

reminder: the problem was
configure.ac:7: warning: ___1_1__CHECKS is m4_require'd but not m4_defun'd
configure.ac:7: warning: ___1_1__CHECK_MODULE is m4_require'd but not m4_defun'd

[[Imported from SVN: r5562]]
parent da9fff7f
Branches
Tags
No related merge requests found
......@@ -202,15 +202,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.
Please register or to comment