Title: [98864] trunk/Source/WebKit/gtk
Revision
98864
Author
carlo...@webkit.org
Date
2011-10-31 10:43:06 -0700 (Mon, 31 Oct 2011)

Log Message

[GTK] Install html and tmpl dirs in a $(DOC_MODULE) dir in tarball
https://bugs.webkit.org/show_bug.cgi?id=71224

Reviewed by Martin Robinson.

* GNUmakefile.gtk-doc.am: Copy html and tmpl dirs to
$(distdir)/$(DOC_MODULE).

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (98863 => 98864)


--- trunk/Source/WebKit/gtk/ChangeLog	2011-10-31 17:38:27 UTC (rev 98863)
+++ trunk/Source/WebKit/gtk/ChangeLog	2011-10-31 17:43:06 UTC (rev 98864)
@@ -1,3 +1,13 @@
+2011-10-31  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] Install html and tmpl dirs in a $(DOC_MODULE) dir in tarball
+        https://bugs.webkit.org/show_bug.cgi?id=71224
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.gtk-doc.am: Copy html and tmpl dirs to
+        $(distdir)/$(DOC_MODULE).
+
 2011-10-29  Martin Robinson  <mrobin...@igalia.com>
 
         [GTK] Switch to a backing store approach for painting WebKitWebView

Modified: trunk/Source/WebKit/gtk/GNUmakefile.gtk-doc.am (98863 => 98864)


--- trunk/Source/WebKit/gtk/GNUmakefile.gtk-doc.am	2011-10-31 17:38:27 UTC (rev 98863)
+++ trunk/Source/WebKit/gtk/GNUmakefile.gtk-doc.am	2011-10-31 17:43:06 UTC (rev 98864)
@@ -196,13 +196,13 @@
 dist-hook: doc-dist-hook
 
 doc-dist-hook: dist-check-gtkdoc dist-hook-local
-	@mkdir $(distdir)/tmpl
-	@mkdir $(distdir)/html
-	@-cp ./Documentation/tmpl/*.sgml $(distdir)/tmpl
-	@cp ./Documentation/html/* $(distdir)/html
+	@mkdir -p $(distdir)/$(DOC_MODULE)/tmpl
+	@mkdir -p $(distdir)/$(DOC_MODULE)/html
+	@-cp ./Documentation/tmpl/*.sgml $(distdir)/$(DOC_MODULE)/tmpl
+	@cp ./Documentation/html/* $(distdir)/$(DOC_MODULE)/html
 	@-cp ./Documentation/$(DOC_MODULE).types $(distdir)/
 	@-cp ./Documentation/$(DOC_MODULE)-sections.txt $(distdir)/
 	@cd $(distdir) && rm -f $(DISTCLEANFILES)
-	@$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
+	@$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/$(DOC_MODULE)/html
 
 .PHONY : dist-hook-local docs
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to