diff options
author | 2016-03-26 14:15:17 -0400 | |
---|---|---|
committer | 2016-03-26 14:15:17 -0400 | |
commit | 0e1e4775082f0660a3bb1c059a12fd33ac14e94c (patch) | |
tree | c9ece627578210d58d58ed398688b98495e16862 | |
parent | 6be644ed9fe4fa893c0d561c6a25118aca548ae3 (diff) | |
download | textadept-0e1e4775082f0660a3bb1c059a12fd33ac14e94c.tar.gz textadept-0e1e4775082f0660a3bb1c059a12fd33ac14e94c.zip |
Always link to iconv on BSD; src/Makefile
Do not assume GTK+'s pkg-config lib flags give iconv.
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index fba1bb10..34121063 100644 --- a/src/Makefile +++ b/src/Makefile @@ -69,9 +69,7 @@ else LDFLAGS += -ldl MAKE = make else - ifeq (curses, $(findstring curses, $(MAKECMDGOALS))) - LDFLAGS += -liconv - endif + LDFLAGS += -liconv MAKE = gmake endif PREFIX ?= /usr/local |