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: https://git.webkit.org/?p=WebKit.git;a=commitdiff_plain;h=a7621584cd35ec034f83931312bf7f76b3921714;hp=c6d72ecf63cc7d244d271db93c1dcc61409d8bef [wx] One more build fix for Win. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68542 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/ChangeLog b/ChangeLog index 99438d07c1b1..efd591d503d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +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. diff --git a/wscript b/wscript index 8942d1388ea5..2bda05e6f3bd 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'])