mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
fc96358cdd
The change to expand_number (r204654) broke detection of too large sizes and relative sizes ('+'/'-'). Also add some tests. PR: 190735 Submitted by: Kirk Russell MFC after: 1 week
14 lines
158 B
Makefile
14 lines
158 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= truncate
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|