From 8998e77b8f348179d0d2fe4d9aea312caef05d71 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 26 Jan 2012 15:22:10 +0100 Subject: [PATCH] docs: Fix formatting in glib-compile-resource man page Fixup the formatting in the example rule for --generate-dependencies. --- docs/reference/gio/glib-compile-resources.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/reference/gio/glib-compile-resources.xml b/docs/reference/gio/glib-compile-resources.xml index f70f8c2ce..5e404a1f9 100644 --- a/docs/reference/gio/glib-compile-resources.xml +++ b/docs/reference/gio/glib-compile-resources.xml @@ -103,13 +103,12 @@ This can be used to track dependencies in the build system. For example, the fol make rule would mark test.gresource as depending on all the files that test.gresource.xm includes, so that is is automatically rebuilt if any of them change: - - test.gresource: test.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies test.gresource.xml) - + +test.gresource: test.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies test.gresource.xml) + Note that this may or may not be portable to non-GNU make. -For example i - +