diff options
author | Ludovic Courtès | 2013-09-28 22:11:08 +0200 |
---|---|---|
committer | Ludovic Courtès | 2013-09-28 22:11:08 +0200 |
commit | 46e7ecaf95ebee3c3a83b483d5adfd4b1962edb3 (patch) | |
tree | 453a330979bffe4bb31e8bceb98db89c09d77b46 | |
parent | eafb5d00fbec47a314b4eff32dddc36c3ba9a561 (diff) | |
download | skribilo-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.ac | 3 |
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";; |