mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 02:38:11 +00:00
qb: Avoid using 'true' which could be a binary on some systems.
This commit is contained in:
parent
9503edce82
commit
e12d203a76
@ -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()
|
||||
|
@ -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'*)
|
||||
|
Loading…
Reference in New Issue
Block a user