summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2011-07-11 01:11:22 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2011-07-12 10:39:20 +0100
commit6b66679a7ce3c7f997161efc6e0eb703175983a1 (patch)
treee010b8ea61a3d9821e69b4295f20c4f656844d8f
parentd7bbc44235e0fa4cc57d65711dcc7cc8b586173d (diff)
downloadcogl-6b66679a7ce3c7f997161efc6e0eb703175983a1.tar.gz
build: Correctly quote the help message for --enable-profile
It did not show up in ./configure --help because of that. Signed-off-by: Robert Bragg <robert@linux.intel.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 015101d0..539adaba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -223,8 +223,8 @@ dnl ============================================================
dnl Enable profiling
dnl ============================================================
AC_ARG_ENABLE(profile,
- AC_HELP_STRING([--enable-uprof=@<:@no/yes@:>@],
- [Turn on uprof profiling support. yes; All UProf profiling probe points are compiled in and may be runtime enabled. no; No profiling support will built into cogl. @<:@default=no@:>@]),
+ [AC_HELP_STRING([--enable-uprof=@<:@no/yes@:>@],
+ [Turn on uprof profiling support. yes; All UProf profiling probe points are compiled in and may be runtime enabled. no; No profiling support will built into cogl. @<:@default=no@:>@])],
[],
[enable_profile=no])
AS_IF([test "x$enable_profile" = "xyes"],