Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Sep 2012 23:19:23 GMT
From:      svn-freebsd-gecko@chruetertee.ch
To:        freebsd-gecko@freebsd.org
Subject:   [SVN-Commit] r987 - trunk/security/nss
Message-ID:  <201209042319.q84NJNXe057171@trillian.chruetertee.ch>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue Sep  4 23:19:23 2012
New Revision: 987

Log:
format to make WITH_DEBUG easier to read

Modified:
   trunk/security/nss/Makefile

Modified: trunk/security/nss/Makefile
==============================================================================
--- trunk/security/nss/Makefile	Tue Sep  4 22:50:29 2012	(r986)
+++ trunk/security/nss/Makefile	Tue Sep  4 23:19:23 2012	(r987)
@@ -41,12 +41,6 @@
 EXTRACT_AFTER_ARGS=| ${TAR} -xf -	\
 	${EXTERNALS:C,^,--exclude ${PORTNAME}-${PORTVERSION}/mozilla/,}
 
-.if !defined(WITH_DEBUG)
-BINS=${DIST}/${OPSYS}${OSREL}_OPT.OBJ
-.else
-BINS=${DIST}/${OPSYS}${OSREL}_DBG.OBJ
-.endif
-
 INSTALL_BINS=	certcgi certutil checkcert cmsutil crlutil derdump makepqg \
 		mangle modutil ocspclnt oidcalc p7content p7env p7sign \
 		p7verify pk12util rsaperf shlibsign signtool signver \
@@ -54,6 +48,9 @@
 
 .if !defined(WITH_DEBUG)
 MAKE_ENV+=	BUILD_OPT=1
+BINS=		${DIST}/${OPSYS}${OSREL}_OPT.OBJ
+.else
+BINS=		${DIST}/${OPSYS}${OSREL}_DBG.OBJ
 .endif
 
 check regression-test test:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209042319.q84NJNXe057171>