diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -74,14 +74,14 @@ main() dep_name="$(printf '%s' "${dep}" | tr -c '[a-z0-9]' '_')" dep_val="$(eval echo \$\{"${dep_name}"\})" if [ -z "${dep_val}" ]; then - find_dep_cmd "${dep}" + find_dep_cmd "${dep}" || missing_deps='true' fi done for dep in ${dep_libs}; do dep_name="$(printf '%s' "${dep}" | tr -c '[a-z0-9]' '_')" dep_val="$(eval echo \$\{"${dep_name}"\})" if [ -z "${dep_val}" ]; then - find_dep_lib "${dep}" + find_dep_lib "${dep}" || missing_deps='true' fi done @@ -259,7 +259,6 @@ find_dep_cmd() unset IFS ${quiet} || printf 'not found\n' - missing_deps='true' return 1 } @@ -284,7 +283,6 @@ find_dep_lib() unset IFS ${quiet} || printf 'not found\n' - missing_deps='true' return 1 } |