qb: Avoid using 'true' which could be a binary on some systems.

This commit is contained in:
orbea 2017-10-24 00:18:23 -07:00
parent 9503edce82
commit e12d203a76
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ check_lib() #$1 = HAVE_$1 $2 = lib $3 = function in lib $4 = extralibs $5 = head
exit 1
}
true
return 0
}
check_lib_cxx() #$1 = HAVE_$1 $2 = lib $3 = function in lib $4 = extralibs $5 = critical error message [checked only if non-empty]
@ -93,7 +93,7 @@ check_lib_cxx() #$1 = HAVE_$1 $2 = lib $3 = function in lib $4 = extralibs $5 =
}
true
return 0
}
check_code_c()

View File

@ -32,7 +32,7 @@ EOF
while IFS='=#' read VAR VAL COMMENT; do
VAR=$(echo "${VAR##HAVE_}" | tr '[:upper:]' '[:lower:]')
case "$VAR" in
'c89_'*) true;;
'c89_'*) continue;;
*)
case "$VAL" in
'yes'*)