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:
parent
d73a6e0da7
commit
f428335253
|
@ -1,6 +1,11 @@
|
|||
# from: @(#)Makefile 5.3 (Berkeley) 5/11/90
|
||||
# $Id: Makefile,v 1.2 1993/07/31 15:23:28 mycroft Exp $
|
||||
# $Id: Makefile,v 1.3 1994/08/05 01:28:56 jtc Exp $
|
||||
|
||||
PROG= false
|
||||
NOPROG= false
|
||||
MAN1= false.0
|
||||
|
||||
install:
|
||||
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
false.sh ${DESTDIR}${BINDIR}/false
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
Loading…
Reference in New Issue