cc-wrapper/setup-hook.sh: remove duplicate flags in NIX_CFLAGS_COMPILE

This commit is contained in:
Daniel Barter 2022-09-17 11:46:15 -07:00
parent 8ed80561a4
commit 0bea4a194f

View File

@ -69,10 +69,12 @@ ccWrapper_addCVars () {
getHostRoleEnvHook
if [ -d "$1/include" ]; then
(! echo "$NIX_CFLAGS_COMPILE" | grep -q -F "$1/include") &&
export NIX_CFLAGS_COMPILE${role_post}+=" -isystem $1/include"
fi
if [ -d "$1/Library/Frameworks" ]; then
(! echo "$NIX_CFLAGS_COMPILE" | grep -q -F "$1/Library/Frameworks") &&
export NIX_CFLAGS_COMPILE${role_post}+=" -iframework $1/Library/Frameworks"
fi
}