aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès2013-09-28 22:11:08 +0200
committerLudovic Courtès2013-09-28 22:11:08 +0200
commit46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3 (patch)
tree453a330979bffe4bb31e8bceb98db89c09d77b46
parenteafb5d00fbec47a314b4eff32dddc36c3ba9a561 (diff)
downloadskribilo-46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3.tar.gz
skribilo-46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3.tar.lz
skribilo-46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3.zip
build: Properly emit the help for '--with-guilemoduledir'.
* configure.ac: Use 'AS_HELP_STRING' to format the help lines for '--with-guilemoduledir'.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2402e6f..efb5c49 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,8 @@ AM_GNU_GETTEXT_VERSION([0.16.1])
# Specifying the Guile module directory.
AC_ARG_WITH([guilemoduledir],
- [use the specified installation path for Guile modules],
+ [AS_HELP_STRING([--with-guilemoduledir=DIR],
+ [install Guile modules under DIR])],
[case "x$withval" in
xyes|xno) guilemoduledir="";;
*) guilemoduledir="$withval";;