Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Jun 2002 12:00:47 +0200
From:      Oliver Braun <obraun@informatik.unibw-muenchen.de>
To:        dinoex@FreeBSD.org
Cc:        ports@FreeBSD.org
Subject:   FreeBSD Port: openssh-portable-3.3p1
Message-ID:  <20020626100047.GA94453@informatik.unibw-muenchen.de>

next in thread | raw e-mail | index | archive | help
the last commit included

.if defined(OPENSSH_OVERWRITE_BASE)
        ${INSTALL_SCRIPT} ${WRKSRC}/sshd.sh ${PREFIX}/etc/rc.d/sshd.sh.sample
.endif

This leads to

install -c -o root -g wheel -m 555 /usr/ports/security/openssh-portable/work/openssh-3.3p1/sshd.sh /usr/etc/rc.d/sshd.sh.sample
install: /usr/etc/rc.d/sshd.sh.sample: No such file or directory
*** Error code 71

since ${PREFIX}==/usr if defined(OPENSSH_OVERWRITE_BASE)

I assume it should be

.if !defined(OPENSSH_OVERWRITE_BASE)
#   ^
        ${INSTALL_SCRIPT} ${WRKSRC}/sshd.sh ${PREFIX}/etc/rc.d/sshd.sh.sample
.endif

Regards,
         Olli
-- 
IST & IIS _ INF _ UniBwM ___________ http://ist.unibw-muenchen.de/People/obraun/
Tele-Consulting GmbH _______________ http://www.tele-consulting.com/ ___ obraun@
FreeBSD: The Power To Serve ________ http://www.freebsd.org/ ___________________
GnuPG: 0xEF25B1BA Fingerprint: 6A3B 042A 732E 17E4 B6E7 3EAF C0B1 6B7D EF25 B1BA

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?20020626100047.GA94453>