RESOLVED FIXED 42601
Web Inspector: Do Not Copy *.re2js Inspector Resources in XCode Build Phase
https://bugs.webkit.org/show_bug.cgi?id=42601
Summary Web Inspector: Do Not Copy *.re2js Inspector Resources in XCode Build Phase
Joseph Pecoraro
Reported 2010-07-19 15:33:44 PDT
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?
Attachments
[PATCH] Remove *.re2js in "Copy Inspector Resources" Build Phase (1.92 KB, patch)
2010-07-19 15:39 PDT, Joseph Pecoraro
mrowe: review+
Joseph Pecoraro
Comment 1 2010-07-19 15:39:44 PDT
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!
Joseph Pecoraro
Comment 2 2010-07-19 16:20:10 PDT
Thanks Mark! Committed r63696 M WebCore/ChangeLog M WebCore/WebCore.xcodeproj/project.pbxproj r63696 = c2b1cbce8e33adf129f3fab7b5032c44e7b23dd3 (refs/remotes/trunk) http://trac.webkit.org/changeset/63696
Note You need to log in before you can comment on or make changes to this bug.