svn commit: r398276 - head/net-mgmt/wifimgr

John Marino marino at FreeBSD.org
Thu Oct 1 14:08:48 UTC 2015


Author: marino
Date: Thu Oct  1 14:08:47 2015
New Revision: 398276
URL: https://svnweb.freebsd.org/changeset/ports/398276

Log:
  net-mgmt/wifimgr: Partially revert last to restore build on DF
  
  The previous commit cleaned up a bit too much.  The MAKE_ENV was
  guarded as FreeBSD-only and that guard was stripped out with the
  cleanup.  Return the guard back but without the now-unncessary
  OPSYS check.  This restores the build on DragonFly.

Modified:
  head/net-mgmt/wifimgr/Makefile

Modified: head/net-mgmt/wifimgr/Makefile
==============================================================================
--- head/net-mgmt/wifimgr/Makefile	Thu Oct  1 13:46:48 2015	(r398275)
+++ head/net-mgmt/wifimgr/Makefile	Thu Oct  1 14:08:47 2015	(r398276)
@@ -18,7 +18,6 @@ USES=		desktop-file-utils pkgconfig tar:
 USE_XORG=	x11
 USE_GNOME=	gtk20
 INSTALLS_ICONS=	yes
-MAKE_ENV=	INSTALL="install -U"
 
 OPTIONS_DEFINE=	NLS
 OPTIONS_SUB=	yes
@@ -27,4 +26,10 @@ NLS_USES=	gettext pkgconfig
 NLS_CFLAGS_OFF=	-DWITHOUT_NLS
 NLS_MAKE_ENV_OFF=	WITHOUT_NLS=yes
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD
+MAKE_ENV=	INSTALL="install -U"
+.endif
+
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list