Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Feb 1999 11:45:24 -0800 (PST)
From:      hamilton@pobox.com
To:        freebsd-gnats-submit@FreeBSD.ORG
Subject:   ports/9911: slrn port Makefile broken (patch included)
Message-ID:  <199902041945.LAA09928@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         9911
>Category:       ports
>Synopsis:       slrn port Makefile broken (patch included)
>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:   Thu Feb  4 11:50:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Jon Hamilton
>Release:        3.0-STABLE
>Organization:
>Environment:
Any
>Description:
news/slrn tries to install built binaries from ${WRKSRC}/src/objs,
but the build actually puts them in ${WRKSRC}/src/${ARCH}objs.
>How-To-Repeat:
make install
>Fix:
--- Makefile.orig       Thu Feb  4 13:39:02 1999
+++ Makefile    Thu Feb  4 13:39:33 1999
@@ -21,8 +21,8 @@
 MAN1=          slrn.1
 
 do-install:
-       ${INSTALL_PROGRAM} ${WRKSRC}/src/objs/slrn ${PREFIX}/bin
-       ${INSTALL_PROGRAM} ${WRKSRC}/src/objs/slrnpull ${PREFIX}/bin
+       ${INSTALL_PROGRAM} ${WRKSRC}/src/${ARCH}objs/slrn ${PREFIX}/bin
+       ${INSTALL_PROGRAM} ${WRKSRC}/src/${ARCH}objs/slrnpull ${PREFIX}/bin
        @${MKDIR} ${PREFIX}/share/examples/slrn
        ${INSTALL_DATA} ${WRKSRC}/doc/slrn.rc ${PREFIX}/share/examples/slrn
        @${MKDIR} ${PREFIX}/share/examples/slrn/slrnpull

>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?199902041945.LAA09928>