1465 oi-build openssl has too much quoting around LINT_FLAGS
authorAlasdair Lumsden <alasdairrr@gmail.com>
Tue, 04 Oct 2011 23:38:59 +0100
changeset 478 474f1ea52d03
parent 477 c77804c1ba5c
child 479 49615ea6dc7b
1465 oi-build openssl has too much quoting around LINT_FLAGS Reviewed by: Andrzej Szeszo <[email protected]> Reviewed by: Gordon Ross <[email protected]> Approved by: Alasdair Lumsden <[email protected]>
components/openssl/openssl-1.0.0/Makefile
--- a/components/openssl/openssl-1.0.0/Makefile	Tue Oct 04 23:36:52 2011 +0100
+++ b/components/openssl/openssl-1.0.0/Makefile	Tue Oct 04 23:38:59 2011 +0100
@@ -19,6 +19,7 @@
 # CDDL HEADER END
 #
 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, Alasdair Lumsden <[email protected]>, OpenIndiana
 #
 include ../../../make-rules/shared-macros.mk
 
@@ -165,10 +166,10 @@
 LFLAGS_64 := -I$(BUILD_DIR_64)/include $(LINT_FLAGS)
 
 # Set modified lint flags for our lint library targets.
-$(BUILD_DIR_32)/llib-lcrypto.ln: LINT_FLAGS="$(LFLAGS_32)"
-$(BUILD_DIR_32)/llib-lssl.ln: LINT_FLAGS="$(LFLAGS_32)"
-$(BUILD_DIR_64)/llib-lcrypto.ln: LINT_FLAGS="$(LFLAGS_64)"
-$(BUILD_DIR_64)/llib-lssl.ln: LINT_FLAGS="$(LFLAGS_64)"
+$(BUILD_DIR_32)/llib-lcrypto.ln: LINT_FLAGS=$(LFLAGS_32)
+$(BUILD_DIR_32)/llib-lssl.ln: LINT_FLAGS=$(LFLAGS_32)
+$(BUILD_DIR_64)/llib-lcrypto.ln: LINT_FLAGS=$(LFLAGS_64)
+$(BUILD_DIR_64)/llib-lssl.ln: LINT_FLAGS=$(LFLAGS_64)
 
 test:		$(NO_TESTS)