Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 2014 21:39:08 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338943 - in head/dns: bind98 bind99
Message-ID:  <201401062139.s06Ld8Ww054592@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Jan  6 21:39:08 2014
New Revision: 338943
URL: http://svnweb.freebsd.org/changeset/ports/338943

Log:
  Fix yet another bug, they're creeping like crazy...

Modified:
  head/dns/bind98/Makefile
  head/dns/bind98/pkg-install
  head/dns/bind99/Makefile
  head/dns/bind99/pkg-install

Modified: head/dns/bind98/Makefile
==============================================================================
--- head/dns/bind98/Makefile	Mon Jan  6 21:35:19 2014	(r338942)
+++ head/dns/bind98/Makefile	Mon Jan  6 21:39:08 2014	(r338943)
@@ -2,7 +2,7 @@
 
 PORTNAME=	bind98
 PORTVERSION=	9.8.6
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	dns net ipv6
 MASTER_SITES=	${MASTER_SITE_ISC}
 MASTER_SITE_SUBDIR=	bind9/${ISCVERSION}

Modified: head/dns/bind98/pkg-install
==============================================================================
--- head/dns/bind98/pkg-install	Mon Jan  6 21:35:19 2014	(r338942)
+++ head/dns/bind98/pkg-install	Mon Jan  6 21:39:08 2014	(r338943)
@@ -20,7 +20,7 @@ done
 
 if [ "$2" = 'POST-DEINSTALL' ]
 then
-	cd /var/named && /bin/rmdir -p ${PKG_PREFIX}/etc > /dev/null  2>&1 || :
+	cd /var/named && /bin/rmdir -p ./${PKG_PREFIX}/etc > /dev/null  2>&1 || :
 fi
 
 exit 0

Modified: head/dns/bind99/Makefile
==============================================================================
--- head/dns/bind99/Makefile	Mon Jan  6 21:35:19 2014	(r338942)
+++ head/dns/bind99/Makefile	Mon Jan  6 21:39:08 2014	(r338943)
@@ -2,7 +2,7 @@
 
 PORTNAME?=	bind99
 PORTVERSION=	9.9.4
-PORTREVISION?=	5
+PORTREVISION?=	6
 CATEGORIES=	dns net ipv6
 MASTER_SITES=	${MASTER_SITE_ISC}
 MASTER_SITE_SUBDIR=	bind9/${ISCVERSION}

Modified: head/dns/bind99/pkg-install
==============================================================================
--- head/dns/bind99/pkg-install	Mon Jan  6 21:35:19 2014	(r338942)
+++ head/dns/bind99/pkg-install	Mon Jan  6 21:39:08 2014	(r338943)
@@ -20,7 +20,7 @@ done
 
 if [ "$2" = 'POST-DEINSTALL' ]
 then
-	cd /var/named && /bin/rmdir -p ${PKG_PREFIX}/etc > /dev/null  2>&1 || :
+	cd /var/named && /bin/rmdir -p ./${PKG_PREFIX}/etc > /dev/null  2>&1 || :
 fi
 
 exit 0



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