Just noticed this. I fixed `build-webkit --inspector-frontend` but I didn't fix the XCode build script. Might the same be necessary somehow for Windows?
Created attachment 62006 [details] [PATCH] Remove *.re2js in "Copy Inspector Resources" Build Phase This adds the following two lines to the Build Phase: # Remove *.re2js files, they are only used to generate some .js files. rm -f "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector/"*.re2js Note that `*` does not work inside a string, so I tack it on the end. Its acceptable to use different quoting techniques in the shell, hence the trick. shell> echo "a"'b'c abc If there is an easier way, let me know!
Thanks Mark! Committed r63696 M WebCore/ChangeLog M WebCore/WebCore.xcodeproj/project.pbxproj r63696 = c2b1cbce8e33adf129f3fab7b5032c44e7b23dd3 (refs/remotes/trunk) http://trac.webkit.org/changeset/63696