diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-02-11 22:00:00 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-02-11 22:00:00 +0100 |
commit | 55d7391f3f219b73d5a899cf5e3cb7b869fe0946 (patch) | |
tree | 9bd352744642e188a2f45389ab80f25384e85fd9 /tools/depends | |
parent | 5251e83cef03013e3e07251da430a376f6ac0e6a (diff) |
[depends] nettle: disable -fPIC/-fpic detection
-fPIC is already in CFLAGS and shouldn't be overwritten with -fpic on linux
Diffstat (limited to 'tools/depends')
-rw-r--r-- | tools/depends/target/nettle/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/nettle/Makefile b/tools/depends/target/nettle/Makefile index a355e414d8..4808ee036d 100644 --- a/tools/depends/target/nettle/Makefile +++ b/tools/depends/target/nettle/Makefile @@ -26,7 +26,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(PLATFORM); patch -p0 < ../01-disable_testsuite.patch - cd $(PLATFORM); $(CONFIGURE) + cd $(PLATFORM); $(CONFIGURE) CCPIC=" " $(LIBDYLIB): $(PLATFORM) $(MAKE) -C $(PLATFORM) |