[Webkit-unassigned] [Bug 15406] Generated files missing from WebCore's Xcode project file
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Oct 30 01:09:55 PDT 2007
http://bugs.webkit.org/show_bug.cgi?id=15406
------- Comment #13 from ddkilzer at webkit.org 2007-10-30 01:09 PDT -------
(In reply to comment #11)
> It is done by WebKit/MigrateHeaders.make. Just add the files to the list at the
> top, and make sure to migrate them to the WebKit private headers directory.
Tim, is there a rule for copying header files in the MigrateHeaders.make file?
There seem to be a lot of missing files if every generated *Private.h and
*Internal.h file is supposed to be migrated this way:
$ for F in `ls WebKitBuild/Debug/DerivedSources/WebCore/*Private.h`; do \
if [ -z "`grep $F WebKit/MigrateHeaders.make`" ]; then \
echo $F; \
fi; done | wc -l
33
$ for F in `ls WebKitBuild/Debug/DerivedSources/WebCore/*Internal.h`; do \
if [ -z "`grep $F WebKit/MigrateHeaders.make`" ]; then \
echo $F; \
fi; done | wc -l
236
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list