mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
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 = [];
|
||||
|
||||
/* 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";
|
||||
|
|
Loading…
Reference in a new issue