Commit 60adefa61025ffd7d56cf7ff8491008f783282bf introduced the use of the CC variable without quoting. This breaks e.g. multilib builds where CC is set to "gcc -m32".
Signed-off-by: Pierre Schmitz <[email protected]> --- Makefile.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.org b/Makefile.org index 6873273..52a3d15 100644 --- a/Makefile.org +++ b/Makefile.org @@ -395,7 +395,7 @@ libcrypto$(SHLIB_EXT): libcrypto.a build_fips FIPSLD_CC="$(CC)"; CC=fips/fipsld; \ export CC FIPSLD_CC; \ fi; \ - $(MAKE) -e SHLIBDIRS=crypto CC=$${CC:-$(CC)} build-shared; \ + $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \ else \ echo "There's no support for shared libraries on this platform" >&2; \ exit 1; \ -- 1.8.5.2 ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
