[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:42:53 PDT 2007
http://bugs.webkit.org/show_bug.cgi?id=15406
------- Comment #14 from ddkilzer at webkit.org 2007-10-30 01:42 PDT -------
(In reply to comment #13)
> 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
Oops! Those weren't correct. These are:
$ for F in `ls WebKitBuild/Debug/DerivedSources/WebCore/ | grep 'Private.h$'`;
do \
if [ -z "`grep $F WebKit/MigrateHeaders.make`" ]; then \
echo $F; \
fi; done | wc -l
0
$ for F in `ls WebKitBuild/Debug/DerivedSources/WebCore/ | grep 'Internal.h$'`;
do \
if [ -z "`grep $F WebKit/MigrateHeaders.make`" ]; then \
echo $F; \
fi; done | wc -l
110
--
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