1
1

* fix for a fix for a bug. mca/common doesn't have a common.h, so it didn't

look like a framework.  Add special exception for common.

This commit was SVN r6365.
Этот коммит содержится в:
Brian Barrett 2005-07-07 04:09:28 +00:00
родитель 269a30fb0e
Коммит e381ac08d9

Просмотреть файл

@ -781,7 +781,8 @@ EOF
framework="`basename \"$framework_path\"`" framework="`basename \"$framework_path\"`"
if test "$framework" != "base" -a \ if test "$framework" != "base" -a \
-d "$framework_path" -a \ -d "$framework_path" ; then
if test "$framework" = "common" -o \
-r "${framework_path}/${framework}.h" ; then -r "${framework_path}/${framework}.h" ; then
framework_list="$framework_list $framework" framework_list="$framework_list $framework"
@ -802,6 +803,7 @@ EOF
fi fi
fi fi
done done
fi
# make list of components for this framework # make list of components for this framework
. "$mca_no_config_env_file" . "$mca_no_config_env_file"