Date: Sun, 12 Mar 2000 16:24:15 -0500 (EST) From: mjoyner@rv1.dynip.com To: FreeBSD-gnats-submit@freebsd.org Subject: ports/17367: XFree86-aout port Message-ID: <200003122124.QAA02849@wolf.dyns.cx>
next in thread | raw e-mail | index | archive | help
>Number: 17367 >Category: ports >Synopsis: The makefile doesn't make the aout lib dir if it doesn't exist >Confidential: yes >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 13 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Joyner >Release: FreeBSD 4.0-20000312-CURRENT i386 >Organization: >Environment: New installation of 4.0-CURRENt >Description: The XFree86 aout libs port doesn't make the needed directory in the XFree86 tree. In addition, during the install, it installs all the libs as a file called aout. >How-To-Repeat: cd /usr/ports/x11/XFree86-aoutlibs; make install >Fix: Fix the port's Makefile. What I did to make it work... added a make directectory before the for install loop. gave install the name of the library twice (instead of once). do-install: cd ${WRKSRC}; \ if [ ! -d ${PREFIX}/lib/aout ]; then mkdir -p ${PREFIX}/lib/aout; fi;\ for l in $$(ls lib*); do \ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} \ ${INSTALL_PROGRAM} $$l ${PREFIX}/lib/aout/$$l; \ done ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib/aout >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?200003122124.QAA02849>