Date: Sat, 5 Jun 1999 16:00:03 +0200 (CEST) From: Nick Hibma <nick.hibma@jrc.it> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/12033: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} Message-ID: <199906051400.QAA40060@elpc36.jrc.it>
next in thread | raw e-mail | index | archive | help
>Number: 12033 >Category: ports >Synopsis: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 5 07:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: ports current as of yesterday afternoon 16:xx >Description: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} to find an executable it has installed in ${PREFIX} >How-To-Repeat: >Fix: --- Makefile.orig Sat Jun 5 15:51:04 1999 +++ Makefile Sat Jun 5 15:51:31 1999 @@ -23,7 +23,7 @@ @if [ ! -f ${PREFIX}/etc/rc.d/rplayd.sh ]; then \ echo "Installing ${PREFIX}/etc/rc.d/rplayd.sh startup file."; \ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/rplayd.sh; \ - echo "[ -x /usr/local/sbin/rplayd ] && ( /usr/local/sbin/rplayd & ) && echo -n ' rplayd'" >> ${PREFIX}/etc/rc.d/rplayd.sh; \ + echo "[ -x ${PREFIX}/sbin/rplayd ] && ( ${PREFIX}/sbin/rplayd & ) && echo -n ' rplayd'" >> ${PREFIX}/etc/rc.d/rplayd.sh; \ chmod 751 ${PREFIX}/etc/rc.d/rplayd.sh; \ fi @if [ ! -f ${PREFIX}/etc/rplay.hosts ]; then \ >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?199906051400.QAA40060>