From: kevino@webkit.org Date: Tue, 28 Sep 2010 18:05:17 +0000 (+0000) Subject: [wx] One more build fix for Win. X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=3f007e6a02c80f633901bd018d27973151028342 [wx] One more build fix for Win. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@68542 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/ChangeLog b/ChangeLog index 99438d0..efd591d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2010-09-28 Kevin Ollivier + [wx] One more build fix for Win. + + * wscript: + +2010-09-28 Kevin Ollivier + [wx] Build fix, ignore Qt-specific (for now?) source in platform/graphics. * wscript: diff --git a/wscript b/wscript index 8942d13..2bda05e 100644 --- a/wscript +++ b/wscript @@ -317,10 +317,10 @@ def build(bld): for wxlib in bld.env['LIB_WX']: wxlibname = os.path.join(bld.env['LIBPATH_WX'][0], wxlib + '_vc.dll') if os.path.exists(wxlibname): - bld.install_files(obj.install_path, [wxlibname]) + bld.install_files(webcore.install_path, [wxlibname]) for dep in windows_deps: - bld.install_files(obj.install_path, [os.path.join(msvclibs_dir, dep)]) + bld.install_files(webcore.install_path, [os.path.join(msvclibs_dir, dep)]) webcore.find_sources_in_dirs(full_dirs, excludes = excludes, exts=['.c', '.cpp'])