Title: [161641] trunk/Source/WebCore
Revision
161641
Author
dba...@webkit.org
Date
2014-01-10 09:19:19 -0800 (Fri, 10 Jan 2014)

Log Message

Attempt to fix the build after <http://trac.webkit.org/changeset/161638>
(https://bugs.webkit.org/show_bug.cgi?id=126698)

Substitute tab characters for space characters.

* DerivedSources.make:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161640 => 161641)


--- trunk/Source/WebCore/ChangeLog	2014-01-10 17:17:23 UTC (rev 161640)
+++ trunk/Source/WebCore/ChangeLog	2014-01-10 17:19:19 UTC (rev 161641)
@@ -1,3 +1,12 @@
+2014-01-10  Daniel Bates  <daba...@apple.com>
+
+        Attempt to fix the build after <http://trac.webkit.org/changeset/161638>
+        (https://bugs.webkit.org/show_bug.cgi?id=126698)
+
+        Substitute tab characters for space characters.
+
+        * DerivedSources.make:
+
 2014-01-10  Anders Carlsson  <ander...@apple.com>
 
         DOMWindow::showModalDialog should use std::function

Modified: trunk/Source/WebCore/DerivedSources.make (161640 => 161641)


--- trunk/Source/WebCore/DerivedSources.make	2014-01-10 17:17:23 UTC (rev 161640)
+++ trunk/Source/WebCore/DerivedSources.make	2014-01-10 17:19:19 UTC (rev 161641)
@@ -747,7 +747,7 @@
 vpath %.idl $(BUILT_PRODUCTS_DIR)/usr/local/include $(SDKROOT)/usr/local/include
 
 $(ADDITIONAL_BINDING_IDLS) : % : WebKitAdditions/%
-    cp $< .
+	cp $< .
 
 else
 
@@ -1214,18 +1214,18 @@
 all : $(WEBCORE_EXPORT_FILES)
 
 WebCore.%.exp : generate-export-file WebCore.exp.in
-    $^ $@
+	$^ $@
 
 # Switch NSRect, NSSize and NSPoint with their CG counterparts for the 64-bit exports file.
 WebCore.LP64.%.exp : WebCore.%.exp
-    cat $^ | sed -e s/7_NSRect/6CGRect/ -e s/7_NSSize/6CGSize/ -e s/8_NSPoint/7CGPoint/ > $@
+	cat $^ | sed -e s/7_NSRect/6CGRect/ -e s/7_NSSize/6CGSize/ -e s/8_NSPoint/7CGPoint/ > $@
 
 else
 
 all : WebCore.exp WebCore.LP64.exp
 
 WebCore.exp : $(BUILT_PRODUCTS_DIR)/WebCoreExportFileGenerator
-    $^ | grep -v '^# ' | sed -e 's/^#//' > $@
+	$^ | grep -v '^# ' | sed -e 's/^#//' > $@
 
 # Switch NSRect, NSSize and NSPoint with their CG counterparts for the 64-bit exports file.
 WebCore.LP64.exp : WebCore.exp
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to