[webkit-reviews] review requested: [Bug 16732] Update svn:ignore
properties for autotools build : [Attachment 18272] Patch for
using to update svn:ignore properties
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jan 4 10:01:31 PST 2008
Rodney Dawes <dobey at wayofthemonkey.com> has asked for review:
Bug 16732: Update svn:ignore properties for autotools build
http://bugs.webkit.org/show_bug.cgi?id=16732
Attachment 18272: Patch for using to update svn:ignore properties
http://bugs.webkit.org/attachment.cgi?id=18272&action=edit
------- Additional Comments from Rodney Dawes <dobey at wayofthemonkey.com>
Since svn:ignore changes are not applyable to the repository with the patch
command, I had to pull the properties out into files which the properties then
get set by reading. After applying this patch, you will need to run the
following command, to actually change the svn:ignore properties, and
subsequently delete the .svnignore files which are only useful for this
process:
for i in `find . -name .svnignore`; do svn propset svn:ignore `dirname $i` -F
$i; rm -f $i; done
This command will set the svn:ignore properties based on the contents of the
.svnignore files, and then delete those files.
More information about the webkit-reviews
mailing list