Fix a typo in the tarball
svn path=/nixpkgs/trunk/; revision=16506
This commit is contained in:
parent
380c4aa4b8
commit
ad7218437d
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user