# bsd.port.mk | 4 ++-- # 1 file changed, 2 insertions(+), 2 deletions(-) # svn status M Mk/bsd.port.mk Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 415531) +++ Mk/bsd.port.mk (working copy) @@ -1641,9 +1641,9 @@ MAKE_ENV+= NO_PIE=yes # We prefer to pass MK_*=no but it was only supported after a certain # revision. Passing WITHOUT_* may conflict with a make.conf or src.conf's # WITH_* value. Note that ports *do* pull in src.conf. -.if 0 && ((${OSVERSION} >= 903510 && ${OSVERSION} < 1000000) || \ +.if (${OSVERSION} >= 903510 && ${OSVERSION} < 1000000) || \ (${OSVERSION} >= 1003503 && ${OSVERSION} < 1100000) || \ - ${OSVERSION} >= 1100000) + ${OSVERSION} >= 1100000 # We will control debug files. Don't let builds that use /usr/share/mk # split out debug symbols since the plist won't know to expect it. MAKE_ARGS+= MK_DEBUG_FILES=no