When bootstrapping install(1), libc may not have the strtofflags(3) support.

This commit is contained in:
Ruslan Ermilov 2001-09-17 11:58:14 +00:00
parent a1e0e968b7
commit e08effdafa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83571

View File

@ -3,6 +3,12 @@
PROG= xinstall
PROGNAME= install
SRCS= xinstall.c
MAN= install.1
.if defined(BOOTSTRAPPING)
.PATH: ${.CURDIR}/../../lib/libc/gen
SRCS+= strtofflags.c
.endif
.include <bsd.prog.mk>