[quake3-commits] r1666 - trunk

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Oct 13 12:33:55 EDT 2009


Author: tma
Date: 2009-10-13 12:33:54 -0400 (Tue, 13 Oct 2009)
New Revision: 1666

Modified:
   trunk/Makefile
Log:
* Unquieten [pkg|sdl]-config for the time being

Modified: trunk/Makefile
===================================================================
--- trunk/Makefile	2009-10-13 15:58:23 UTC (rev 1665)
+++ trunk/Makefile	2009-10-13 16:33:54 UTC (rev 1666)
@@ -181,7 +181,7 @@
 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 @@
   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



More information about the quake3-commits mailing list