diff options
author | Tim Potter <tpot@samba.org> | 2003-09-24 02:45:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-09-24 02:45:00 +0000 |
commit | a899daa93acbe398761d905426a9b2302e8497f1 (patch) | |
tree | 3a309dd1b70e926810c89ab2ab9c12d0a689c7c7 | |
parent | f6e0a1097460c1eaac8842f941dbb0a42713dfd1 (diff) | |
download | samba-a899daa93acbe398761d905426a9b2302e8497f1.tar.gz samba-a899daa93acbe398761d905426a9b2302e8497f1.tar.bz2 samba-a899daa93acbe398761d905426a9b2302e8497f1.zip |
Another round of merges from 3.0:
>Change error message displayed when --without-libiconv is used as
>an argument to configure. Closes bug 468.
(This used to be commit 4b73ba7df1764b47aae8b22980efdb05d1639e57)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0cf34bc9a7..b981313c9a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1573,7 +1573,7 @@ AC_ARG_WITH(libiconv, [ --with-libiconv=BASEDIR Use libiconv in BASEDIR/lib and BASEDIR/include (default=auto) ], [ if test "$withval" = "no" ; then - AC_MSG_ERROR(I won't take no for an answer) + AC_MSG_ERROR([argument to --with-libiconv must be a directory]) else if test "$withval" != "yes" ; then ICONV_PATH_SPEC=yes |