summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2016-11-07 16:40:49 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2016-11-07 16:40:49 +0800
commitbb99fb5444dcbec8090ec4b33e6aa1d3334488e5 (patch)
tree40d952988cbbf40950e64768773f6458998e9259
parent7e85d024026bc6bc9f10d1ab15e8d464cca67946 (diff)
downloadgobject-introspection-bb99fb5444dcbec8090ec4b33e6aa1d3334488e5.tar.gz
gi-setenv-msvc.mak: Fix LIB envvar
We previously moved the NMake Makefiles to build the introspection files into build/win32, but I forgot to change the LIB envvar setting to reflect that, causing introspection builds to fail for GIRepository-2.0.gir (or to use a previously-installed version of girepository-1.0.lib). Fix this.
-rw-r--r--build/win32/gi-setenv-msvc.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/win32/gi-setenv-msvc.mak b/build/win32/gi-setenv-msvc.mak
index 6cfae3ab..fe7935de 100644
--- a/build/win32/gi-setenv-msvc.mak
+++ b/build/win32/gi-setenv-msvc.mak
@@ -9,4 +9,4 @@ setgirbuildenv:
@set PYTHONPATH=$(TOP_SRCDIR);$(BINDIR)
@set PATH=$(BINDIR);$(PREFIX)\bin;$(PATH)
@set PKG_CONFIG_PATH=$(PKG_CONFIG_PATH)
- @set LIB=win32\vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\lib;$(LIB)
+ @set LIB=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\lib;$(LIB)