diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-04-27 10:57:05 +0800 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-05-25 05:52:02 -0400 |
commit | 544414ba604b13e0992ad87e90b8bdf45c43011c (patch) | |
tree | 3209dd75e5a99aff970f1729acd9f5749422b5a5 /libraries/base | |
parent | c67c9e8239a767aa870c1b7aa2adf2a363205837 (diff) | |
download | haskell-544414ba604b13e0992ad87e90b8bdf45c43011c.tar.gz |
[ci/darwin] use system provided iconv and curses
Also make sure to be able to build with non-apple-clang, while using apple's SDK on macOS
Diffstat (limited to 'libraries/base')
-rw-r--r-- | libraries/base/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/configure.ac b/libraries/base/configure.ac index 68295563af..f0b4f371c4 100644 --- a/libraries/base/configure.ac +++ b/libraries/base/configure.ac @@ -103,7 +103,7 @@ dnl-------------------------------------------------------------------- AC_ARG_WITH([iconv-includes], [AS_HELP_STRING([--with-iconv-includes], [directory containing iconv.h])], - [ICONV_INCLUDE_DIRS=$withval; CPPFLAGS="-I$withval $CPPFLAGS"], + [ICONV_INCLUDE_DIRS=$withval], [ICONV_INCLUDE_DIRS=]) AC_ARG_WITH([iconv-libraries], |