Title: [102724] trunk/Source/WebKit2
Revision
102724
Author
[email protected]
Date
2011-12-13 17:51:45 -0800 (Tue, 13 Dec 2011)

Log Message

Unreviewed build fix.

* GNUmakefile.am: make sure we do not derreference the target link
if it already exists, and replace it with the new one instead,
otherwise we end up with a gtk link inside
Source/WebKit2/UIProcess/API/gtk, which causes the documentation
build to produce warnings, and make the build fail.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (102723 => 102724)


--- trunk/Source/WebKit2/ChangeLog	2011-12-14 01:46:36 UTC (rev 102723)
+++ trunk/Source/WebKit2/ChangeLog	2011-12-14 01:51:45 UTC (rev 102724)
@@ -1,3 +1,13 @@
+2011-12-13  Gustavo Noronha Silva  <[email protected]>
+
+        Unreviewed build fix.
+
+        * GNUmakefile.am: make sure we do not derreference the target link
+        if it already exists, and replace it with the new one instead,
+        otherwise we end up with a gtk link inside
+        Source/WebKit2/UIProcess/API/gtk, which causes the documentation
+        build to produce warnings, and make the build fail.
+
 2011-12-13  Andreas Kling  <[email protected]>
 
         REGRESSION (r102652): New window opens with zero size at produbanco.com

Modified: trunk/Source/WebKit2/GNUmakefile.am (102723 => 102724)


--- trunk/Source/WebKit2/GNUmakefile.am	2011-12-14 01:46:36 UTC (rev 102723)
+++ trunk/Source/WebKit2/GNUmakefile.am	2011-12-14 01:51:45 UTC (rev 102724)
@@ -1064,7 +1064,7 @@
 
 $(GENSOURCES_WEBKIT2)/webkit2gtk/include/webkit2: $(webkit2gtk_headers)
 	$(AM_V_GEN)mkdir -p $(GENSOURCES_WEBKIT2)/webkit2gtk/include \
-	&& ln -s -f ${shell pwd}/$(WebKit2)/UIProcess/API/gtk $@
+	&& ln -n -s -f ${shell pwd}/$(WebKit2)/UIProcess/API/gtk $@
 
 BUILT_SOURCES += $(GENSOURCES_WEBKIT2)/webkit2gtk/include/webkit2
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to