]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
PATH trick does not work, so let's ignore the problem and use explicit paths
authorRudolf Polzer <divverent@alientrap.org>
Sat, 11 Dec 2010 15:01:20 +0000 (16:01 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Sat, 11 Dec 2010 15:01:20 +0000 (16:01 +0100)
mingw-Makefile.conf

index 4d335c49fcb758a8a5912ffe9ce77c739a9b18ba..cdaa44fbaee7de16c9a5dfc1cd3e5abfa0bd84ee 100644 (file)
@@ -3,10 +3,13 @@
 # edit the paths in here
 
 # how to get pkg-config
-PKGCONFIG = $(RADIANT_DEPENDENCIES_PREFIX)/gtk/bin/pkg-config.exe
+PKGCONFIG ?= $(RADIANT_DEPENDENCIES_PREFIX)/gtk/bin/pkg-config.exe
 
 # extra utils
-PATH := $(PATH):$(RADIANT_DEPENDENCIES_PREFIX)/util/bin
+GIT ?= $(RADIANT_DEPENDENCIES_PREFIX)/util/bin/git
+WGET ?= $(RADIANT_DEPENDENCIES_PREFIX)/util/bin/wget
+SVN ?= $(RADIANT_DEPENDENCIES_PREFIX)/util/bin/svn
+UNZIPPER ?= $(RADIANT_DEPENDENCIES_PREFIX)/util/bin/unzip
 
 # use mingw32
 include mingw-Makefile.inc