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