Title: [161267] trunk/Source/WebCore
Revision
161267
Author
[email protected]
Date
2014-01-03 10:41:26 -0800 (Fri, 03 Jan 2014)

Log Message

WebKit-GTK 1.8.1 does not build on OS X 10.7
https://bugs.webkit.org/show_bug.cgi?id=88407

Reviewed by Carlos Garcia Campos.

Replace non-portable 'echo -n' with 'true'.

* GNUmakefile.am:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161266 => 161267)


--- trunk/Source/WebCore/ChangeLog	2014-01-03 17:37:33 UTC (rev 161266)
+++ trunk/Source/WebCore/ChangeLog	2014-01-03 18:41:26 UTC (rev 161267)
@@ -1,3 +1,14 @@
+2014-01-03  Alberto Garcia  <[email protected]>
+
+        WebKit-GTK 1.8.1 does not build on OS X 10.7
+        https://bugs.webkit.org/show_bug.cgi?id=88407
+
+        Reviewed by Carlos Garcia Campos.
+
+        Replace non-portable 'echo -n' with 'true'.
+
+        * GNUmakefile.am:
+
 2014-01-03  [email protected]  <[email protected]>
 
         [WinCairo] Compile error.

Modified: trunk/Source/WebCore/GNUmakefile.am (161266 => 161267)


--- trunk/Source/WebCore/GNUmakefile.am	2014-01-03 17:37:33 UTC (rev 161266)
+++ trunk/Source/WebCore/GNUmakefile.am	2014-01-03 18:41:26 UTC (rev 161267)
@@ -444,8 +444,8 @@
 .SECONDARY:
 $(supplemental_dependency_file): $(SCRIPTS_FOR_PREPROCESS_IDLS) $(dom_binding_idls)
 	$(AM_V_GEN)
-	$(AM_V_at)echo -n > $(idl_files_list)
-	$(AM_V_at)($(foreach idl, $(dom_binding_idls), echo $(idl) &&) echo -n) >> $(idl_files_list)
+	$(AM_V_at)true > $(idl_files_list)
+	$(AM_V_at)($(foreach idl, $(dom_binding_idls), echo $(idl) &&) true) >> $(idl_files_list)
 	$(AM_V_at)$(PERL) -I$(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/preprocess-idls.pl --defines "LANGUAGE_JAVASCRIPT=1 $(feature_defines)" --idlFilesList $(idl_files_list) --windowConstructorsFile $(window_constructors_file) --workerGlobalScopeConstructorsFile $(workerglobalscope_constructors_file) --sharedWorkerGlobalScopeConstructorsFile $(sharedworkerglobalscope_constructors_file) --dedicatedWorkerGlobalScopeConstructorsFile $(dedicatedworkerglobalscope_constructors_file) --supplementalDependencyFile $@
 
 .PHONY: $(window_constructors_file) $(workerglobalscope_constructors_file) $(sharedworkerglobalscope_constructors_file) $(dedicatedworkerglobalscope_constructors_file)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to