Date: Thu, 21 Sep 2000 01:37:04 -0400 (EDT) From: yds@dppl.com To: FreeBSD-gnats-submit@freebsd.org Cc: dom@myrddin.demon.co.uk Subject: ports/21441: FIX: devel/pcre to install a working pgrep binary Message-ID: <20000921053704.3BF7E1B20E@volyn.dppl.com>
next in thread | raw e-mail | index | archive | help
>Number: 21441 >Category: ports >Synopsis: FIX: devel/pcre to install a working pgrep binary >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 20 22:40:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yarema >Release: FreeBSD 4.1-STABLE i386 >Organization: DPPL >Environment: FreeBSD 4.1-STABLE i386 >Description: @${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep in the pre-install target otherwise we get a broken pgrep shell script installed instead of the binary we really want. >How-To-Repeat: cd /usr/ports/devel/pcre && make install && pgrep >Fix: diff -ruN pcre.prev/Makefile pcre/Makefile --- pcre.prev/Makefile Wed Apr 12 02:12:33 2000 +++ pcre/Makefile Thu Sep 21 01:29:42 2000 @@ -18,4 +18,9 @@ MAN3= pcre.3 pcreposix.3 MAN1= pgrep.1 +# Otherwise we get a broken pgrep shell script installed +# instead of the binary we really want. +pre-install: + @${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep + .include <bsd.port.mk> >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000921053704.3BF7E1B20E>