diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-09 01:09:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-04-09 01:09:20 +0200 |
commit | 7626af0b8aeb6ec098c772b5400141b12b36e91a (patch) | |
tree | 40cda1e3d4833c566a6d7fda7a559d357ad242f4 /package/openssl | |
parent | 496ad14c2b8e2deab8c561d191c7d4563d2aeec0 (diff) |
drop support for non-Linux hosts
Diffstat (limited to 'package/openssl')
-rw-r--r-- | package/openssl/Makefile | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile index 601ef95fc..0c68a5800 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -65,19 +65,8 @@ CONFIG:= linux-aarch64 OPENSSL_OPTIONS+= no-asm endif -ifneq (,$(filter CYGWIN%,${OS_FOR_BUILD})) -HOSTCONFIG:= Cygwin-x86_64 -endif -ifeq ($(OS_FOR_BUILD),Darwin) -HOSTCONFIG:= darwin64-x86_64-cc -endif - host-configure: -ifeq ($(HOSTCONFIG),) (cd $(WRKBUILD); ./config --prefix='$(STAGING_HOST_DIR)/usr' -fPIC -ldl) -else - (cd $(WRKBUILD); ./Configure $(HOSTCONFIG) --prefix='$(STAGING_HOST_DIR)/usr') -endif host-build: (cd $(WRKBUILD); $(MAKE)) |