diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-12-11 13:03:52 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-12-11 13:03:52 +0000 |
commit | 8cdb866d85ac8d810a8d1f090cdafb0c4503248b (patch) | |
tree | a16e99c755f2b6961e2184e08edf4e73a6786b83 | |
parent | 8e5fb3fb4ab09b4dc04fe7cb3f7becce6514117b (diff) | |
download | buildroot-novena-8cdb866d85ac8d810a8d1f090cdafb0c4503248b.tar.gz buildroot-novena-8cdb866d85ac8d810a8d1f090cdafb0c4503248b.zip |
openssl doesnt like 'make -j'
-rw-r--r-- | package/openssl/openssl.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index 4cac7617f..52ef28ba0 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -32,10 +32,10 @@ $(OPENSSL_DIR)/Makefile: $(OPENSSL_DIR)/.unpacked shared no-idea no-mdc2 no-rc5) $(OPENSSL_DIR)/apps/openssl: $(OPENSSL_DIR)/Makefile - $(MAKE) CC=$(TARGET_CC) -C $(OPENSSL_DIR) all build-shared + $(MAKE1) CC=$(TARGET_CC) -C $(OPENSSL_DIR) all build-shared # Work around openssl build bug to link libssl.so with libcrypto.so. -rm $(OPENSSL_DIR)/libssl.so.*.*.* - $(MAKE) CC=$(TARGET_CC) -C $(OPENSSL_DIR) do_linux-shared + $(MAKE1) CC=$(TARGET_CC) -C $(OPENSSL_DIR) do_linux-shared $(STAGING_DIR)/lib/libcrypto.a: $(OPENSSL_DIR)/apps/openssl $(MAKE) CC=$(TARGET_CC) INSTALL_PREFIX=$(STAGING_DIR) -C $(OPENSSL_DIR) install |