Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Aug 2014 13:13:27 +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: r365728 - head/security/zxid
Message-ID:  <201408231313.s7NDDRxV013478@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sat Aug 23 13:13:26 2014
New Revision: 365728
URL: http://svnweb.freebsd.org/changeset/ports/365728
QAT: https://qat.redports.org/buildarchive/r365728/

Log:
  security/xzid: suppress broken and unnecesary missing target check
  
  Line 606 of the vendor Makefile has a malformed error message that comes
  up if the makefile is given no target.  For reasons I don't understand,
  the gmake on FreeBSD tolerates it and the same exact gmake on DragonFly
  catches it.  Just amend the sed command the remove the line completely
  as it's never executed in the ports framework.

Modified:
  head/security/zxid/Makefile

Modified: head/security/zxid/Makefile
==============================================================================
--- head/security/zxid/Makefile	Sat Aug 23 12:50:20 2014	(r365727)
+++ head/security/zxid/Makefile	Sat Aug 23 13:13:26 2014	(r365728)
@@ -40,6 +40,7 @@ post-patch:
 	@${REINPLACE_CMD} -e \
 		'/^LIBS/s|-lpthread|-pthread| ; \
 		 /^SHARED/s|--export-all-symbols|| ; \
+		 /..error /d ; \
 		 /which gcc/d' ${WRKSRC}/Makefile
 	@${REINPLACE_CMD} -e \
 		's|<malloc.h>|<stdlib.h>|' ${WRKSRC}/zxidconf.c



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