diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-04 15:44:35 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-04-04 15:44:35 +0200 |
commit | f894e85e8537ec8b54abe40db21bd8281cedd245 (patch) | |
tree | d0a95d5c3821f6509806b9df7eb967cd56e74ba3 /Makefile | |
parent | 01931cc26499e5003582a7bc52f489019e706d4d (diff) |
Makefile: remove extra quotes around host linker flags for cygwin
Closes #3541
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ ifneq ($(findstring cygwin,$(GNU_HOST_NAME)),) HOST_EXEEXT:=.exe HOST_LIBEXT:=.lib HOST_SHREXT:=.dll -HOST_LOADLIBES="-lcurses -lintl" +HOST_LOADLIBES=-lcurses -lintl export HOST_LOADLIBES endif ifneq ($(findstring mingw,$(GNU_HOST_NAME)),) |