Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jan 2012 07:15:48 GMT
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        contact@toha.org.ua
Subject:   ports/164045: [PATCH] java/dbvis: prevent dirrm beginning with a /
Message-ID:  <201201120715.q0C7FmOm007311@freefall.freebsd.org>
Resent-Message-ID: <201201120720.q0C7K9ap007916@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         164045
>Category:       ports
>Synopsis:       [PATCH] java/dbvis: prevent dirrm beginning with a /
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jan 12 07:20:09 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Baptiste Daroussin
>Release:        FreeBSD 10.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD azathoth.lan 10.0-CURRENT FreeBSD 10.0-CURRENT #8 r227964M: Thu Dec  1 23:52:49
>Description:
Prevent to add @dirrm entries begining with a /

Port maintainer (contact@toha.org.ua) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- dbvis-7.1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/java/dbvis/Makefile,v
retrieving revision 1.16
diff -u -u -r1.16 Makefile
--- Makefile	2 Jul 2010 23:39:50 -0000	1.16
+++ Makefile	12 Jan 2012 07:14:16 -0000
@@ -34,6 +34,6 @@
 	${FIND} ${DATADIR} -not -type d \
 	  | ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST}
 	${FIND} -d ${DATADIR} -type d \
-	  | ${SED} -ne 's,^${PREFIX},@dirrm ,p' >> ${TMPPLIST}
+	  | ${SED} -ne 's,^${PREFIX}/,@dirrm ,p' >> ${TMPPLIST}
 
 .include <bsd.port.mk>
--- dbvis-7.1.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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