svn commit: r567980 - head/net/bsdrcmds

Cy Schubert cy at FreeBSD.org
Wed Mar 10 04:20:17 UTC 2021


Author: cy
Date: Wed Mar 10 04:20:16 2021
New Revision: 567980
URL: https://svnweb.freebsd.org/changeset/ports/567980

Log:
  net/bsdrcmds: Fix options breakage.
  
  r564865 broke OPTIONS.
  
  PR:		253000
  Reported by:	bugzilla.freebsd at omnilan.de
  MFH:		2021Q1

Modified:
  head/net/bsdrcmds/Makefile   (contents, props changed)

Modified: head/net/bsdrcmds/Makefile
==============================================================================
--- head/net/bsdrcmds/Makefile	Wed Mar 10 01:54:34 2021	(r567979)
+++ head/net/bsdrcmds/Makefile	Wed Mar 10 04:20:16 2021	(r567980)
@@ -17,14 +17,6 @@ USES=		uidfix
 
 MAKE_ARGS+=		BINOWN=${BINOWN} BINMODE=${BINMODE}
 
-.include <bsd.port.options.mk>
-
-.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300134
-MAKE_ENV+=		MK_WERROR=no
-.else
-MAKE_ENV+=		NO_WERROR=1
-.endif
-
 OPTIONS_DEFINE=		IPV6 LIBBLACKLIST
 OPTIONS_DEFAULT=	LIBBLACKLIST
 .if !exists(/usr/include/blacklist.h)
@@ -35,5 +27,13 @@ IPV6_MAKE_ARGS=		USE_IPV6=yes
 
 LIBBLACKLIST_DESC=	libblacklist(3) support for rlogind(8) and rshd(8)
 LIBBLACKLIST_MAKE_ARGS=	USE_LIBBLACKLIST=yes
+
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300134
+MAKE_ENV+=		MK_WERROR=no
+.else
+MAKE_ENV+=		NO_WERROR=1
+.endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list