diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 08:11:35 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 08:11:35 +0000 |
commit | 2c2796719afce7b7a64fa1dd0bec736b10e371da (patch) | |
tree | 27af60c5939dbe7b51eda6ff3d28a7439a19d94f /Makefile | |
parent | 15d53f0d1b45a87daae5819eb3c0ab49cb2776ae (diff) | |
download | buildroot-novena-2c2796719afce7b7a64fa1dd0bec736b10e371da.tar.gz buildroot-novena-2c2796719afce7b7a64fa1dd0bec736b10e371da.zip |
package/config: cygwin fix
- pass HOST_LOADLIBES down to make mconf for cygwin
- fix link-order WRT HOST_LOADLIBES
From Bernhards tree (91018d95)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -170,6 +170,8 @@ ifneq ($(findstring cygwin,$(BR2_GNU_BUILD_SUFFIX)),) HOST_EXEEXT:=.exe HOST_LIBEXT:=.lib HOST_SHREXT:=.dll +HOST_LOADLIBES="-lcurses -lintl" +export HOST_LOADLIBES endif ifneq ($(findstring mingw,$(BR2_GNU_BUILD_SUFFIX)),) HOST_EXEEXT:=.exe |