#########################################################
# call build_configure
#########################################################
- if ( "${module}" == "MED" && $med_with_gui == 0 ) then
+ if ( $med_with_gui == 0 && "${module}" == "MED" ) then
set add_keys="--without-ihm"
endif
cd ${module_src}
if ( ! -e ${module_src}/configure ) then
echo "\!\!\! Warning \!\!\! Can not find configure script in ${module_src}."
else
- if ( "${module}" == "MED" && $med_with_gui == 0 ) then
+ if ( $med_with_gui == 0 && "${module}" == "MED" ) then
set add_keys="--without-ihm"
endif
if ( "${module}" == "NETGENPLUGIN" && ($?NETGENHOME) ) then
#########################################################
# call build_configure
#########################################################
- if [ ${module} == "MED" ] && [ $med_with_gui -eq 0 ] ; then
+ if [ $med_with_gui -eq 0 ] && [ ${module} == "MED" ] ; then
add_keys="--without-ihm"
fi
cd ${module_src}
echo '!!! Warning !!! Can not find configure script in '${module_src}'.'
echo
else
- if [ "${module}" == "MED" ] && [ $med_with_gui -eq 0 ] ; then
+ if [ $med_with_gui -eq 0 ] && [ "${module}" == "MED" ] ; then
add_keys="--without-ihm"
fi
if [ "${module}" == "NETGENPLUGIN" ] && [ "$NETGENHOME" != "" ] ; then