diff options
author | H.Habighorst <tearofadragon@googlemail.com> | 2009-06-24 21:25:12 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-24 22:32:11 +0800 |
commit | fea8c66641a96e9ea4c1a78d8bbe995756f28e00 (patch) | |
tree | 8e103f6fd8215524553144bbd50420f80ae51dad /configure.ac | |
parent | 54cc76ac50b500645cde0858bd6f767591ecba3e (diff) | |
download | gsoc2013-evolution-fea8c66641a96e9ea4c1a78d8bbe995756f28e00.tar.gz gsoc2013-evolution-fea8c66641a96e9ea4c1a78d8bbe995756f28e00.tar.zst gsoc2013-evolution-fea8c66641a96e9ea4c1a78d8bbe995756f28e00.zip |
Bug 586806 – Fix iconv cflags/libs in configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 765a9bbb60..e2e6a06b57 100644 --- a/configure.ac +++ b/configure.ac @@ -242,7 +242,7 @@ have_iconv=no AC_ARG_WITH([libiconv], AC_HELP_STRING([--with-libiconv=PATH], [Prefix where libiconv is installed])) -if test -d $withval; then +if test -d "$withval"; then ICONV_CFLAGS="-I$withval/include" ICONV_LIBS="-L$withval/lib" fi |