summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-12-24 13:55:07 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-12-24 13:55:07 +0000
commit35b43ecb72a1486d3925edc655ea718efbd96c75 (patch)
tree7b32a2fa3c69b6c65fb7195cb3f44a20a243944c
parent7574b41345968b5f7e9ca5875faccb1478ce0555 (diff)
downloadbuildsystem-35b43ecb72a1486d3925edc655ea718efbd96c75.tar.gz
buildsystem-35b43ecb72a1486d3925edc655ea718efbd96c75.tar.bz2
Add -N to amiga LDFLAGS
svn path=/trunk/tools/buildsystem/; revision=13345
-rw-r--r--makefiles/Makefile.tools2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index c27b55c..181e813 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -268,7 +268,7 @@ ifeq ($(findstring amiga,$(TARGET)),amiga)
# TODO: this assumes GCC
CFLAGS := $(CFLAGS) -U__STRICT_ANSI__ -I$(GCCSDK_INSTALL_ENV)/include
CXXFLAGS := $(CXXFLAGS) -U__STRICT_ANSI__ -I$(GCCSDK_INSTALL_ENV)/include
- LDFLAGS := $(LDFLAGS) -L$(GCCSDK_INSTALL_ENV)/lib
+ LDFLAGS := $(LDFLAGS) -N -L$(GCCSDK_INSTALL_ENV)/lib
PREFIX ?= $(GCCSDK_INSTALL_ENV)
endif