aboutsummaryrefslogtreecommitdiff
path: root/dns/ironsides
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-02-19 02:22:41 +0000
committerJohn Marino <marino@FreeBSD.org>2014-02-19 02:22:41 +0000
commitb71c5f1f65c4d1be44a4643b22f14af7d81807ef (patch)
tree98116eb398c4d4007220fb81449695cf1e93a590 /dns/ironsides
parentbdd2b41345352ca297788d867957f1dc9e3bcdd6 (diff)
downloadports-b71c5f1f65c4d1be44a4643b22f14af7d81807ef.tar.gz
ports-b71c5f1f65c4d1be44a4643b22f14af7d81807ef.zip
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.
Notes
Notes: svn path=/head/; revision=344987
Diffstat (limited to 'dns/ironsides')
-rw-r--r--dns/ironsides/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/dns/ironsides/Makefile b/dns/ironsides/Makefile
index 5f0aceab53cd..16c06d870422 100644
--- a/dns/ironsides/Makefile
+++ b/dns/ironsides/Makefile
@@ -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>