Date: Wed, 19 Feb 2014 02:22:41 +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: r344987 - head/dns/ironsides Message-ID: <201402190222.s1J2MfXt075334@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Wed Feb 19 02:22:41 2014 New Revision: 344987 URL: http://svnweb.freebsd.org/changeset/ports/344987 QAT: https://qat.redports.org/buildarchive/r344987/ Log: dns/ironsides: Fix extraction problem on clean jail GNATMake was used to clean up the WRKSRC after extraction, but the problem is that it's not present at that point on a clean build; it comes in later as a build dependency. Rather than a messy definition of extract-depends, just remove the files manually without gnatmake. Modified: head/dns/ironsides/Makefile Modified: head/dns/ironsides/Makefile ============================================================================== --- head/dns/ironsides/Makefile Wed Feb 19 02:19:43 2014 (r344986) +++ head/dns/ironsides/Makefile Wed Feb 19 02:22:41 2014 (r344987) @@ -22,8 +22,7 @@ DOS2UNIX_FILES= dfcs.usafa.edu.zonefile post-extract: @${MV} ${WRKDIR}/trunk ${WRKSRC} - @(cd ${WRKSRC}; ${RM} *.bak *.bk.[0-9]) - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} gnatclean -q spark_dns_main) + @(cd ${WRKSRC}; ${RM} *.bak *.bk.[0-9] *.o *.ali) @${CP} ${FILESDIR}/ironsides.gpr ${FILESDIR}/Makefile ${WRKSRC}/ .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402190222.s1J2MfXt075334>