openssl: fix parallel builds

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
lumag
2011-09-04 02:26:17 +00:00
committed by Koen Kooi
parent 22cede3ee0
commit c434bc4f65
2 changed files with 24 additions and 1 deletions
@@ -0,0 +1,22 @@
Upstream-Status: Pending
fix the parallel build regarding shared libraries.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Index: openssl-1.0.0d/Makefile.org
===================================================================
--- openssl-1.0.0d.orig/Makefile.org 2011-09-01 17:03:59.000000000 +0400
+++ openssl-1.0.0d/Makefile.org 2011-09-01 17:12:24.000000000 +0400
@@ -246,9 +246,9 @@
@dir=crypto; target=all; $(BUILD_ONE_CMD)
build_ssl:
@dir=ssl; target=all; $(BUILD_ONE_CMD)
-build_engines:
+build_engines: build_crypto
@dir=engines; target=all; $(BUILD_ONE_CMD)
-build_apps:
+build_apps: build_crypto
@dir=apps; target=all; $(BUILD_ONE_CMD)
build_tests:
@dir=test; target=all; $(BUILD_ONE_CMD)
@@ -6,7 +6,7 @@ DEPENDS += "ocf-linux"
CFLAG += "-DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS"
PR = "${INC_PR}.0"
PR = "${INC_PR}.1"
LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8"
@@ -22,6 +22,7 @@ SRC_URI += "file://configure-targets.patch \
file://shared-libs.patch \
file://oe-ldflags.patch \
file://engines-install-in-libdir-ssl.patch \
file://openssl-fix-link.patch \
file://debian/version-script.patch \
file://debian/pic.patch \
file://debian/c_rehash-compat.patch \