diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-01-25 12:00:00 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-01-25 12:00:00 +0100 |
commit | 2825d7c3e3307e52b95308e004f31fad7604a758 (patch) | |
tree | e6183fad0a95f2a6aa8983864b4e9ea1561ce88f /tools/depends/target/pythonmodule-pycryptodome/Makefile | |
parent | 15a8af06e78708bfd47b1270fb15dcadee32b45e (diff) |
[depends] fix LIBDYLIB definitions
Diffstat (limited to 'tools/depends/target/pythonmodule-pycryptodome/Makefile')
-rw-r--r-- | tools/depends/target/pythonmodule-pycryptodome/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/depends/target/pythonmodule-pycryptodome/Makefile b/tools/depends/target/pythonmodule-pycryptodome/Makefile index 1b54ba1ed2..2c53295eb4 100644 --- a/tools/depends/target/pythonmodule-pycryptodome/Makefile +++ b/tools/depends/target/pythonmodule-pycryptodome/Makefile @@ -24,7 +24,10 @@ LDSHARED:=$(CC) -bundle -undefined dynamic_lookup $(LDFLAGS) CROSSFLAGS=PYTHONXCPREFIX="$(PREFIX)" CC="$(CC) $(CFLAGS)" CCSHARED="$(CC) $(CFLAGS) $(PYTHON_O)" LDFLAGS="$(LDFLAGS)" PYTHONPATH="$(PREFIX)/lib/python2.7/site-packages/" LDSHARED="$(LDSHARED)" endif -LIBDYLIB=$(PLATFORM)/dist/$(LIBNAME)-$(VERSION)-py2.7.egg +LIBDYLIB=$(PLATFORM)/build/lib.$(OS)-$(CPU)-2.7/Cryptodome +ifeq ($(NATIVE_OS), osx) + LIBDYLIB=$(PLATFORM)/build/lib.macosx-10.4-x86_64-2.7/Cryptodome +endif all: .installed-$(PLATFORM) |