Title: [110446] trunk/Tools
Revision
110446
Author
[email protected]
Date
2012-03-12 10:50:50 -0700 (Mon, 12 Mar 2012)

Log Message

[GTK] r110296 included an extra $ in @$(AM_V_GEN)
https://bugs.webkit.org/show_bug.cgi?id=80809

Patch by C Anthony Risinger <[email protected]> on 2012-03-12
Reviewed by Philippe Normand.

* GNUmakefile.am: Add `$` to @(AM_V_GEN), else /bin/sh syntax error

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (110445 => 110446)


--- trunk/Tools/ChangeLog	2012-03-12 17:43:51 UTC (rev 110445)
+++ trunk/Tools/ChangeLog	2012-03-12 17:50:50 UTC (rev 110446)
@@ -1,3 +1,12 @@
+2012-03-12  C Anthony Risinger  <[email protected]>
+
+        [GTK] r110296 included an extra $ in @$(AM_V_GEN)
+        https://bugs.webkit.org/show_bug.cgi?id=80809
+
+        Reviewed by Philippe Normand.
+
+        * GNUmakefile.am: Add `$` to @(AM_V_GEN), else /bin/sh syntax error
+
 2012-03-12  Ming Xie  <[email protected]>
 
         [BlackBerry] build-webkit doesn't recognize "--cmakearg" for the BlackBerry port

Modified: trunk/Tools/GNUmakefile.am (110445 => 110446)


--- trunk/Tools/GNUmakefile.am	2012-03-12 17:43:51 UTC (rev 110445)
+++ trunk/Tools/GNUmakefile.am	2012-03-12 17:50:50 UTC (rev 110446)
@@ -324,7 +324,7 @@
 	  fi; \
 	fi
 endif
-	@(AM_V_GEN)$(PYTHON) $(srcdir)/Tools/gtk/generate-gtkdoc --rebase --virtual-root=$${DESTDIR}
+	@$(AM_V_GEN)$(PYTHON) $(srcdir)/Tools/gtk/generate-gtkdoc --rebase --virtual-root=$${DESTDIR}
 
 uninstall-local:
 	@DOC_MODULE_VERSION=`cat ./Documentation/webkitgtk/version.xml`; \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to