make(1) can now handle spaces surrounding parenthesis correctly.

This commit is contained in:
Ruslan Ermilov 2004-02-05 08:44:43 +00:00
parent 0cd7b33bf3
commit f258f151cd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125474

View file

@ -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