1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00
freebsd-ports/shells/osh/Makefile
Akinori MUSHA 77f6c01ede Use ${ECHO_CMD} instead of ${ECHO} where you mean the echo command;
the ECHO macro is set to "echo" by default, but it is set to "true" if
make(1) is invoked with the -s option while ECHO_CMD is always set to
the echo command.
2002-01-29 11:58:52 +00:00

27 lines
586 B
Makefile

# New ports collection makefile for: osh
# Date created: 29 December 2000
# Whom: George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= osh
PORTVERSION= 001127
CATEGORIES= shells
MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/
MAINTAINER= greid@ukug.uk.freebsd.org
MAKEFILE= makefile
MAN1= osh.1
post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \
${ECHO_CMD} ${PREFIX}/bin/osh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>