Title: [110205] trunk/Source/WebCore
Revision
110205
Author
[email protected]
Date
2012-03-08 14:09:53 -0800 (Thu, 08 Mar 2012)

Log Message

[Qt] Try to fix the Snow Leopard build

If the build is running under sh, echo -n does not empty the file.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (110204 => 110205)


--- trunk/Source/WebCore/ChangeLog	2012-03-08 22:03:09 UTC (rev 110204)
+++ trunk/Source/WebCore/ChangeLog	2012-03-08 22:09:53 UTC (rev 110205)
@@ -1,5 +1,13 @@
 2012-03-08  Tor Arne Vestbø  <[email protected]>
 
+        [Qt] Try to fix the Snow Leopard build
+
+        If the build is running under sh, echo -n does not empty the file.
+
+        * DerivedSources.pri:
+
+2012-03-08  Tor Arne Vestbø  <[email protected]>
+
         Prospective build fix for Qt minimal after r110191
 
         https://bugs.webkit.org/show_bug.cgi?id=80338

Modified: trunk/Source/WebCore/DerivedSources.pri (110204 => 110205)


--- trunk/Source/WebCore/DerivedSources.pri	2012-03-08 22:03:09 UTC (rev 110204)
+++ trunk/Source/WebCore/DerivedSources.pri	2012-03-08 22:09:53 UTC (rev 110205)
@@ -673,7 +673,7 @@
 # FIXME : We need to use only perl at some point.
 EOC = $$escape_expand(\\n\\t)
 win_cmd_shell: preprocessIdls.commands = type nul > $$IDL_FILES_TMP $$EOC
-else: preprocessIdls.commands = echo -n > $$IDL_FILES_TMP $$EOC
+else: preprocessIdls.commands = cat /dev/null > $$IDL_FILES_TMP $$EOC
 for(binding, IDL_BINDINGS) {
     preprocessIdls.commands += echo $$binding >> $$IDL_FILES_TMP $$EOC
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to