mirror of
https://gitlab.com/xonotic/xonotic
synced 2024-12-15 03:15:33 +00:00
fix syntax of $HOME var use
This commit is contained in:
parent
c68423b1ef
commit
2856d02081
2
all
2
all
@ -426,7 +426,7 @@ case "$cmd" in
|
||||
if [ -z "$CC" ]; then
|
||||
export CC=gcc
|
||||
fi
|
||||
elif [ x"`uname`" = x"Darwin" ] && ( [ -d /Library/Frameworks/SDL.framework ] || [ -d $(HOME)/Library/Frameworks/SDL.framework ] ); then
|
||||
elif [ x"`uname`" = x"Darwin" ] && { [ -d /Library/Frameworks/SDL.framework ] || [ -d "$HOME/Library/Frameworks/SDL.framework" ]; }; then
|
||||
# AGL is broken in Snow Leopard, so let's default to SDL if it is available.
|
||||
TARGETS="sv-debug sdl-debug"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user