Date: Sun, 11 Mar 2001 09:46:20 +0100 (CET) From: Edwin Mons <edwinm@joshua.mons.net> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/25689: Update Makefile port games/xtrojka Message-ID: <200103110846.JAA68951@joshua.mons.net>
next in thread | raw e-mail | index | archive | help
>Number: 25689 >Category: ports >Synopsis: Fixed problem in Makefile which prevented it from being built >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 11 00:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edwin Mons >Release: FreeBSD 4.2-RELEASE i386 >Organization: ilse media b.v. >Environment: FreeBSD 4.2, XFree86 4.0.2 >Description: Installing the port relied on mkdirhier. If the person building and installing the port did not have /usr/X11R6/bin in his/her $PATH, install would fail. >How-To-Repeat: make install >Fix: Apply this patch: --- xtrojka.bak/Makefile Sun Mar 11 09:38:14 2001 +++ xtrojka/Makefile Sun Mar 11 09:35:19 2001 @@ -19,9 +19,9 @@ USE_XLIB= yes pre-install: - @exec mkdirhier ${PREFIX}/share/xtrojka + @exec /bin/mkdir -p ${PREFIX}/share/xtrojka post-install: - strip ${PREFIX}/bin/xtrojka + /usr/bin/strip ${PREFIX}/bin/xtrojka .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?200103110846.JAA68951>