Fix a typo in the tarball

svn path=/nixpkgs/trunk/; revision=16506
This commit is contained in:
Michael Raskin 2009-07-29 18:47:09 +00:00
parent 380c4aa4b8
commit ad7218437d

View file

@ -17,7 +17,7 @@ rec {
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["setVars" "paranoidFixComments" "doConfigure" (doPatchShebangs ".")
phaseNames = ["setVars" "fixTypos" "paranoidFixComments" "doConfigure" (doPatchShebangs ".")
"doReplaceUsrBin" "doMakeInstall" "doAddPrograms"];
setVars = fullDepEntry (''
@ -40,6 +40,10 @@ rec {
sed -re 's@( |^)//.*@/* & */@' -i $(find . -name '*.c' -o -name '*.h')
'') ["minInit" "doUnpack"];
fixTypos = fullDepEntry (''
sed -e 's@WebCore/workers/DedicatedWorkerThread.h$@& \@' -i WebCore/GNUMakefile
'') ["minInit" "doUnpack"];
name = "webkit-" + version;
meta = {
description = "WebKit - a fast and correct HTML renderer";