Date: Thu, 10 Feb 2000 16:01:45 -0500 (EST) From: kbyanc@posi.net To: FreeBSD-gnats-submit@freebsd.org Subject: ports/16643: patch to fix installation of radreport port Message-ID: <200002102101.QAA34110@kronos.alcnet.com>
next in thread | raw e-mail | index | archive | help
>Number: 16643 >Category: ports >Synopsis: needs ${INSTALL_SCRIPT} rather than ${INSTALL_DATA} >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: Thu Feb 10 13:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Kelly Yancey >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: The radreport port currently is using ${INSTALL_DATA} to install the script which doesn't set the proper permissions to make it executable. >How-To-Repeat: >Fix: diff -ru net/radreport.orig/Makefile net/radreport/Makefile --- net/radreport.orig/Makefile Thu Feb 10 15:56:03 2000 +++ net/radreport/Makefile Thu Feb 10 15:47:04 2000 @@ -22,6 +22,6 @@ @for i in $(DISTFILES); do ${CP} ${DISTDIR}/$$i ${WRKDIR}; done do-install: - @${INSTALL_DATA} ${WRKDIR}/radreport ${PREFIX}/bin + @${INSTALL_SCRIPT} ${WRKDIR}/radreport ${PREFIX}/bin .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?200002102101.QAA34110>