diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-04-01 14:29:51 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-04-01 14:29:51 +0800 |
commit | 4cbba801af505b3bc36dbfae1c518091fb4ec9df (patch) | |
tree | 688cb60463370279297db632366eca3cfa565c48 /build | |
parent | 6750a92ca83aa301eeac5eb59e918576fe544231 (diff) | |
download | gobject-introspection-4cbba801af505b3bc36dbfae1c518091fb4ec9df.tar.gz |
build/gi-introspection-msvc.mak: Fix Include Path
The -I flags for generating GIRepository-2.0.gir should use $(BASEDIR), not
%BASEDIR%, as we are not using a Windows .bat to generate the introspection
files.
Diffstat (limited to 'build')
-rw-r--r-- | build/gi-introspection-msvc.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/gi-introspection-msvc.mak b/build/gi-introspection-msvc.mak index 36d63a44..47e73ecf 100644 --- a/build/gi-introspection-msvc.mak +++ b/build/gi-introspection-msvc.mak @@ -154,8 +154,8 @@ GIRepository-$(GLIB_APIVERSION).gir: gi_list GObject-$(GLIB_APIVERSION).gir win3 --add-include-path=..\gir --add-include-path=. --namespace=GIRepository --nsversion=$(GLIB_APIVERSION) \ --identifier-prefix=GI --symbol-prefix=g --c-include="girepository.h" --add-include-path=. \ --no-libtool --pkg=gobject-$(GLIB_APIVERSION) --include=GObject-$(GLIB_APIVERSION) \ - --library=girepository-1.0 -I..\girepository -I.. -I%BASEDIR%\include \ - -I%BASEDIR%\include\glib-2.0 -I%BASEDIR%\lib\glib-2.0\include --filelist=gi_list \ + --library=girepository-1.0 -I..\girepository -I.. -I$(BASEDIR)\include \ + -I$(BASEDIR)\include\glib-2.0 -I$(BASEDIR)\lib\glib-2.0\include --filelist=gi_list \ -DGI_COMPILATION -o $@ # Bundled cairo-1.0.gir.in processing |