mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 02:30:35 +00:00
Merge pull request #5781 from orbea/pkgconf
qb: Clean up empty defines in config.mk
This commit is contained in:
commit
93451012ec
@ -93,12 +93,13 @@ check_pkgconf() #$1 = HAVE_$1 $2 = package $3 = version $4 = critical error mess
|
||||
|
||||
eval HAVE_$1="$answer";
|
||||
echo "$ECHOBUF ... $version"
|
||||
PKG_CONF_USED="$PKG_CONF_USED $1"
|
||||
[ "$answer" = 'no' ] && {
|
||||
if [ "$answer" = 'no' ]; then
|
||||
[ "$4" ] && die 1 "$4"
|
||||
[ "$tmpval" = 'yes' ] && \
|
||||
die 1 "Forced to build with package $2, but cannot locate. Exiting ..."
|
||||
}
|
||||
else
|
||||
PKG_CONF_USED="$PKG_CONF_USED $1"
|
||||
fi
|
||||
}
|
||||
|
||||
check_header() #$1 = HAVE_$1 $2..$5 = header files
|
||||
|
Loading…
Reference in New Issue
Block a user