Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2015 14:08:47 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398276 - head/net-mgmt/wifimgr
Message-ID:  <201510011408.t91E8lxf014242@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



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