aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-13 16:33:54 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-13 16:33:54 +0000
commit8724787924a2124f51d8e21b3eaa4ff0a1acb55e (patch)
treeacae4f6329b810e2e59c0be7a2bc93ec5233facc
parent92d88e90577bab41fc243c8f865146c730a9a752 (diff)
downloadioquake3-aero-8724787924a2124f51d8e21b3eaa4ff0a1acb55e.tar.gz
ioquake3-aero-8724787924a2124f51d8e21b3eaa4ff0a1acb55e.zip
* Unquieten [pkg|sdl]-config for the time being
git-svn-id: svn://svn.icculus.org/quake3/trunk@1666 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c2879eb..8dda65a 100644
--- a/Makefile
+++ b/Makefile
@@ -181,7 +181,7 @@ TEMPDIR=/tmp
ifneq ($(BUILD_CLIENT),0)
# set PKG_CONFIG_PATH to influence this, e.g.
# PKG_CONFIG_PATH=/opt/cross/i386-mingw32msvc/lib/pkgconfig
- ifeq ($(shell which pkg-config &> /dev/null; echo $$?),0)
+ ifeq ($(shell which pkg-config > /dev/null; echo $$?),0)
CURL_CFLAGS=$(shell pkg-config --silence-errors --cflags libcurl)
CURL_LIBS=$(shell pkg-config --silence-errors --libs libcurl)
OPENAL_CFLAGS=$(shell pkg-config --silence-errors --cflags openal)
@@ -192,7 +192,7 @@ ifneq ($(BUILD_CLIENT),0)
endif
# Use sdl-config if all else fails
ifeq ($(SDL_CFLAGS),)
- ifeq ($(shell which sdl-config &> /dev/null; echo $$?),0)
+ ifeq ($(shell which sdl-config > /dev/null; echo $$?),0)
SDL_CFLAGS=$(shell sdl-config --cflags)
SDL_LIBS=$(shell sdl-config --libs)
endif