mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Merge pull request #5603 from orbea/true
qb: Avoid using 'true' which could be a binary on some systems.
This commit is contained in:
commit
185ef85ded
@ -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…
x
Reference in New Issue
Block a user