Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Feb 2015 15:48:58 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r378249 - in branches/2015Q1/sysutils/lsof: . files
Message-ID:  <201502011548.t11FmwDS048670@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Sun Feb  1 15:48:57 2015
New Revision: 378249
URL: https://svnweb.freebsd.org/changeset/ports/378249
QAT: https://qat.redports.org/buildarchive/r378249/

Log:
  MFH: r378245
  
  Fix build on systems without /etc/make.conf
  
  PR:		197241
  Submitted by:	riggs
  Approved by:	ports-secteam (zi), ler@lerctr.org (maintainer)

Added:
  branches/2015Q1/sysutils/lsof/files/
     - copied from r378245, head/sysutils/lsof/files/
Modified:
  branches/2015Q1/sysutils/lsof/Makefile
Directory Properties:
  branches/2015Q1/   (props changed)

Modified: branches/2015Q1/sysutils/lsof/Makefile
==============================================================================
--- branches/2015Q1/sysutils/lsof/Makefile	Sun Feb  1 15:46:04 2015	(r378248)
+++ branches/2015Q1/sysutils/lsof/Makefile	Sun Feb  1 15:48:57 2015	(r378249)
@@ -41,8 +41,8 @@ SHEBANG_FILES=	scripts/sort_res.perl5
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "arm"
-BROKEN=		Does not compile on arm
+.if !empty(ARCH:Marm*) && ((${OSVERSION} < 1001505) || (${OSVERSION} > 1100000 && ${OSVERSION} < 1100052))
+BROKEN=	Not supported on ARM platform below release 10.1 or a more recent current
 .endif
 
 CONFIGURE_SCRIPT=	Configure



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