disable printf(1) builtin for now, it's broken (yet irreproducible)
probably multiple i/o redirection, or stuff like that
This commit is contained in:
parent
6c5d08ea6f
commit
ef41b5dbdc
4
Makefile
4
Makefile
|
@ -1,4 +1,4 @@
|
|||
# $MirOS: src/bin/mksh/Makefile,v 1.4 2005/08/26 22:03:55 tg Exp $
|
||||
# $MirOS: src/bin/mksh/Makefile,v 1.5 2005/08/29 01:16:22 tg Exp $
|
||||
|
||||
PROG= mksh
|
||||
SRCS= alloc.c edit.c eval.c exec.c expr.c funcs.c histrap.c \
|
||||
|
@ -7,6 +7,8 @@ CDIAGFLAGS+= -Wno-cast-qual
|
|||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
NO_PRINTF_BUILTIN=broken for now
|
||||
|
||||
.ifndef NO_PRINTF_BUILTIN
|
||||
.PATH: ${BSDSRCDIR}/usr.bin/printf
|
||||
SRCS+= printf.c
|
||||
|
|
Loading…
Reference in New Issue