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

only pass the required modules to configure

[[Imported from SVN: r5619]]
parent fa8ae26f
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,11 @@ run_default_configure () {
PARAMS="$CMD_FLAGS"
if test -x configure; then
ACLOCAL_FLAGS="-I ."
for m in $FOUND_MODULES; do
MY_MODULES=
# get dependencies & suggestions
sort_modules $module
for m in $MODULES; do
if test x$module = x$m; then continue; fi # skip myself
path=$(eval "echo \$PATH_$m")
name=$(eval "echo \$NAME_$m")
if test -d "$path/m4"; then
......
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