From f258f151cdb2867f212600cde28d6d3105733128 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Thu, 5 Feb 2004 08:44:43 +0000 Subject: [PATCH] make(1) can now handle spaces surrounding parenthesis correctly. --- share/mk/bsd.prog.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index 7e34965ea301..35b81f53f511 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -21,7 +21,7 @@ CFLAGS+=${CRUNCH_CFLAGS} STRIP?= -s .endif -.if defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" ) +.if defined(NOSHARED) && (${NOSHARED} != "no" && ${NOSHARED} != "NO") LDFLAGS+= -static .endif