diff options
author | dglazkov@google.com <dglazkov@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-09 15:32:34 +0000 |
---|---|---|
committer | dglazkov@google.com <dglazkov@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-09 15:32:34 +0000 |
commit | f3e8965444b0b615ed8aabfcacc5840f6684c0c5 (patch) | |
tree | e4488c7e40b2b7612ada7f5db796ead7e0cdeeaa /webkit/port | |
parent | b0c8ef624a09af898a8329338c1d3020f7bdd9f7 (diff) | |
download | chromium_src-f3e8965444b0b615ed8aabfcacc5840f6684c0c5.zip chromium_src-f3e8965444b0b615ed8aabfcacc5840f6684c0c5.tar.gz chromium_src-f3e8965444b0b615ed8aabfcacc5840f6684c0c5.tar.bz2 |
Strip CRs from *.in files to allow building from webkit.org
R=darin
Review URL: http://codereview.chromium.org/39004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11244 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r-- | webkit/port/DerivedSources.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/port/DerivedSources.make b/webkit/port/DerivedSources.make index de46e40..d41c7c0 100644 --- a/webkit/port/DerivedSources.make +++ b/webkit/port/DerivedSources.make @@ -956,14 +956,14 @@ endif #endif CSSPropertyNames.h : $(WEBCORE_CSS_PROPERTY_NAMES) css/makeprop.pl - if sort $(WEBCORE_CSS_PROPERTY_NAMES) | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi + if dos2unix $(WEBCORE_CSS_PROPERTY_NAMES) | sort | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi cat $(WEBCORE_CSS_PROPERTY_NAMES) > CSSPropertyNames.in perl "$(WebCore)/css/makeprop.pl" CSSValueKeywords.h : $(WEBCORE_CSS_VALUE_KEYWORDS) css/makevalues.pl # Lower case all the values, as CSS values are case-insensitive perl -ne 'print lc' $(WEBCORE_CSS_VALUE_KEYWORDS) > CSSValueKeywords.in - if sort CSSValueKeywords.in | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi + if dos2unix CSSValueKeywords.in | sort | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi perl "$(WebCore)/css/makevalues.pl" # DOCTYPE strings |