svn commit: r344181 - head/share/mk
Ed Maste
emaste at FreeBSD.org
Fri Feb 15 22:30:10 UTC 2019
Author: emaste
Date: Fri Feb 15 22:30:09 2019
New Revision: 344181
URL: https://svnweb.freebsd.org/changeset/base/344181
Log:
Fix Makefile conditional after r344179
Modified:
head/share/mk/bsd.prog.mk
Modified: head/share/mk/bsd.prog.mk
==============================================================================
--- head/share/mk/bsd.prog.mk Fri Feb 15 22:28:34 2019 (r344180)
+++ head/share/mk/bsd.prog.mk Fri Feb 15 22:30:09 2019 (r344181)
@@ -39,7 +39,7 @@ MK_DEBUG_FILES= no
LDFLAGS+= -Wl,-znow
.endif
.if ${MK_PIE} != "no" && \
- !defined(NO_SHARED) || ${NO_SHARED} == "no" || ${NO_SHARED} == "NO"
+ (!defined(NO_SHARED) || ${NO_SHARED} == "no" || ${NO_SHARED} == "NO")
CFLAGS+= -fPIE
CXXFLAGS+= -fPIE
LDFLAGS+= -pie
More information about the svn-src-all
mailing list