summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 23:59:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 23:59:34 +0000
commit43813e5aa1996c9b2f95398198545707b12debba (patch)
tree6302393e8b11c29a52eaee39d6b4cfb16b9dbaee /makefiles
parentee4b3d95cae2258a8883afde87e8dbb3b121dd84 (diff)
downloadbuildsystem-43813e5aa1996c9b2f95398198545707b12debba.tar.gz
buildsystem-43813e5aa1996c9b2f95398198545707b12debba.tar.bz2
Fix default SHAREDLDFLAGS
svn path=/trunk/tools/buildsystem/; revision=6861
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/Makefile.tools2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 8beb580..41690f8 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -149,7 +149,7 @@ endif
ifeq ($(COMPONENT_TYPE),lib-shared)
# Default CFLAGS/LDFLAGS for shared libraries
SHAREDCFLAGS ?= -fPIC -DPIC
- SHAREDLDFLAGS ?= -Wl,-shared
+ SHAREDLDFLAGS ?= -shared
CFLAGS := $(CFLAGS) $(SHAREDCFLAGS)
LDFLAGS := $(LDFLAGS) $(SHAREDLDFLAGS)