diff options
author | Mike Hommey <mh@glandium.org> | 2012-04-16 14:30:20 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2012-04-17 05:42:19 (GMT) |
commit | f5e0f526ec2079bf9b734f500df1cbc090f33b39 (patch) | |
tree | d8daa85be20a87b42016e1f561d83aa5769ffcfc /Makefile.in | |
parent | 9ef7f5dc34ff02f50d401e41c8d9a4a928e7c2aa (diff) | |
download | jemalloc-f5e0f526ec2079bf9b734f500df1cbc090f33b39.zip jemalloc-f5e0f526ec2079bf9b734f500df1cbc090f33b39.tar.gz jemalloc-f5e0f526ec2079bf9b734f500df1cbc090f33b39.tar.bz2 |
Remove -dynamic CFLAG on OSX
It is a linker flag, so it doesn't make sense in CFLAGS, and it's the
default when invoking the linker for shared libraries.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 8828d7f..6479857 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,9 +21,6 @@ MANDIR := $(DESTDIR)@MANDIR@ # Build parameters. CPPFLAGS := @CPPFLAGS@ -I@srcroot@include -I@objroot@include CFLAGS := @CFLAGS@ -ifeq (macho, @abi@) -CFLAGS += -dynamic -endif LDFLAGS := @LDFLAGS@ LIBS := @LIBS@ RPATH_EXTRA := @RPATH_EXTRA@ |