diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-05 16:34:32 +0000 |
commit | a5e029f061c56093ab7c61f8e61cd6df60150721 (patch) | |
tree | ea367375020edb29a2bb6cc3e27d62467847a75e /m4/arts.m4 | |
parent | 4fb3cbf95de50e6f5f6327e6cf962d3ffcc43d04 (diff) | |
download | xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.gz xine-lib-a5e029f061c56093ab7c61f8e61cd6df60150721.tar.bz2 |
properly use AC_HELP_STRING, properly use $enableval for AC_ARG_ENABLE
CVS patchset: 6217
CVS date: 2004/03/05 16:34:32
Diffstat (limited to 'm4/arts.m4')
-rw-r--r-- | m4/arts.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/arts.m4 b/m4/arts.m4 index 35f0370f9..ee320f32b 100644 --- a/m4/arts.m4 +++ b/m4/arts.m4 @@ -9,10 +9,10 @@ AC_DEFUN([AM_PATH_ARTS], [dnl dnl Get the cflags and libraries from the artsc-config script dnl -AC_ARG_WITH(arts-prefix,[ --with-arts-prefix=PFX Prefix where ARTS is installed (optional)], +AC_ARG_WITH(arts-prefix, AC_HELP_STRING([--with-arts-prefix=DIR], [prefix where ARTS is installed (optional)]), arts_prefix="$withval", arts_prefix="") -AC_ARG_ENABLE(artstest, [ --disable-artstest Do not try to compile and run a test ARTS program], - , enable_artstest=yes) +AC_ARG_ENABLE(artstest, AC_HELP_STRING([--disable-artstest], [do not try to compile and run a test ARTS program]), + enable_artstest=$enableval, enable_artstest=yes) if test x$arts_prefix != x ; then arts_args="$arts_args --arts-prefix=$arts_prefix" |