Shell script implementations of "true" and "false" by me, working from

the POSIX.1 specification only.

This should not infringe on the copyright of another well known shell
script based implementation.  See PR #361 for some reasons (Other than
it's "clean room" development) why I think this is true.
This commit is contained in:
jtc 1994-08-05 01:28:47 +00:00
parent 183f4c6128
commit 6b603e0f26

View File

@ -1,6 +1,11 @@
# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
# $Id: Makefile,v 1.2 1993/07/30 23:50:12 mycroft Exp $
# $Id: Makefile,v 1.3 1994/08/05 01:28:47 jtc Exp $
PROG= true
NOPROG= true
MAN1= true.0
install:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
true.sh ${DESTDIR}${BINDIR}/true
.include <bsd.prog.mk>