diff options
author | Britney Fransen <brfransen@gmail.com> | 2012-02-19 20:11:23 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2012-02-19 20:11:23 (GMT) |
commit | 443b2a8694fbf63ed61f9624b4741a6bae28374b (patch) | |
tree | e5e7aff374bd411ac44476eda377b3062f7d4856 /abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch | |
parent | 52880d521a89b52cd7d36e34e872c091b2c8f899 (diff) | |
parent | 08478d8a9de5eaeec46a8c0140e6c19e8158f2ad (diff) | |
download | linhes_pkgbuild-443b2a8694fbf63ed61f9624b4741a6bae28374b.zip linhes_pkgbuild-443b2a8694fbf63ed61f9624b4741a6bae28374b.tar.gz linhes_pkgbuild-443b2a8694fbf63ed61f9624b4741a6bae28374b.tar.bz2 |
Merge branch 'testing' of linhes.org:linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch')
-rw-r--r-- | abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch b/abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch deleted file mode 100644 index 1b917ba..0000000 --- a/abs/extra/community/chromium/make-hash-tools-use-if-instead-of-switch.patch +++ /dev/null @@ -1,37 +0,0 @@ -Index: /trunk/Source/WebCore/make-hash-tools.pl -=================================================================== ---- /trunk/Source/WebCore/make-hash-tools.pl (revision 72664) -+++ /trunk/Source/WebCore/make-hash-tools.pl (revision 89265) -@@ -21,5 +21,4 @@ - - use strict; --use Switch; - use File::Basename; - -@@ -29,7 +28,5 @@ - - --switch ($option) { -- --case "DocTypeStrings" { -+if ($option eq "DocTypeStrings") { - - my $docTypeStringsGenerated = "$outdir/DocTypeStrings.cpp"; -@@ -39,7 +36,5 @@ - system("gperf --key-positions=\"*\" -s 2 $docTypeStringsGperf > $docTypeStringsGenerated") == 0 || die "calling gperf failed: $?"; - --} # case "DocTypeStrings" -- --case "ColorData" { -+} elsif ($option eq "ColorData") { - - my $colorDataGenerated = "$outdir/ColorData.cpp"; -@@ -49,5 +44,5 @@ - system("gperf --key-positions=\"*\" -D -s 2 $colorDataGperf > $colorDataGenerated") == 0 || die "calling gperf failed: $?"; - --} # case "ColorData" -- --} # switch ($option) -+} else { -+ die "Unknown option."; -+} |