mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-25 05:11:23 +00:00
We can't -I$x_includes, it might not be set. -I${x_includes:-.} instead.
This commit is contained in:
parent
4db01ef0dc
commit
0da23b9a52
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ if test "x$HAS_OGL" != xno; then
|
|||
if test "x$OGL_INCLUDES" != xauto; then
|
||||
OGL_CFLAGS="-I$OGL_INCLUDES"
|
||||
else
|
||||
OGL_CFLAGS="-I/usr/local/include -I$x_includes"
|
||||
OGL_CFLAGS="-I/usr/local/include -I${x_includes:-.}"
|
||||
fi
|
||||
save_CPPFLAGS="$CPPFLAGS"
|
||||
CPPFLAGS="$CPPFLAGS $OGL_CFLAGS"
|
||||
|
|
Loading…
Reference in a new issue