summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 13:26:18 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2014-07-01 13:26:18 +0800
commitee9a6d0acef9ac3be7605ce560e1d16965b941c7 (patch)
tree9fbef7d85afbc24c6d88d56886d9fdb0f0a3a008 /build
parent9822891e483afb50ab76f6c1c7c813b84626b7aa (diff)
downloadgtk+-ee9a6d0acef9ac3be7605ce560e1d16965b941c7.tar.gz
MSVC Builds: Fix Introspection Builds
Commit e26bdbda only partially made the necessary changes due to the use of the deprecated headers in GDK. Fix that.
Diffstat (limited to 'build')
-rw-r--r--build/gen-file-list-gtk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gen-file-list-gtk.py b/build/gen-file-list-gtk.py
index 045f860e9d..f39944a082 100644
--- a/build/gen-file-list-gtk.py
+++ b/build/gen-file-list-gtk.py
@@ -18,7 +18,7 @@ def gen_gdk_filelist(srcroot, subdir, dest):
vars['gdk_enums'] = 'gdkenumtypes.c gdkenumtypes.h'
- files = vars['gdk_public_h_sources'].split() + \
+ files = vars['gdk_h_sources'].split() + \
vars['gdk_c_sources'].split() + \
vars['gdk_enums'].split()