Browse Source

Makefile: remove extra quotes around host linker flags for cygwin

Closes #3541

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard 14 years ago
parent
commit
f894e85e85
2 changed files with 2 additions and 1 deletions
  1. 1 0
      CHANGES
  2. 1 1
      Makefile

+ 1 - 0
CHANGES

@@ -16,6 +16,7 @@
 	#3457: alsamixergui: broken URL
 	#3457: alsamixergui: broken URL
 	#3475: Calling sync on large filesystems when not always necessary
 	#3475: Calling sync on large filesystems when not always necessary
 	#3511: make busybox-menuconfig does not download busybox package
 	#3511: make busybox-menuconfig does not download busybox package
+	#3541: Quotes in the top Makefile:217 break buildroot/kernel config...
 
 
 2011.02, Released February 28th, 2011:
 2011.02, Released February 28th, 2011:
 
 

+ 1 - 1
Makefile

@@ -214,7 +214,7 @@ ifneq ($(findstring cygwin,$(GNU_HOST_NAME)),)
 HOST_EXEEXT:=.exe
 HOST_EXEEXT:=.exe
 HOST_LIBEXT:=.lib
 HOST_LIBEXT:=.lib
 HOST_SHREXT:=.dll
 HOST_SHREXT:=.dll
-HOST_LOADLIBES="-lcurses -lintl"
+HOST_LOADLIBES=-lcurses -lintl
 export HOST_LOADLIBES
 export HOST_LOADLIBES
 endif
 endif
 ifneq ($(findstring mingw,$(GNU_HOST_NAME)),)
 ifneq ($(findstring mingw,$(GNU_HOST_NAME)),)