diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-11-13 13:49:29 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-11-13 13:49:29 +0000 |
commit | 40c6b893d8592bcb26e09c972be2891c2b79ff1f (patch) | |
tree | d4d4eae9350b90f65572d961ca980edfb1f019f1 /usr.bin/xinstall/Makefile | |
parent | b448dd2f9ebb1f5ccf7ab98c6dbbbdc3aa7ceb48 (diff) |
Take __FreeBSD_version into account when BOOTSTRAPPING.
Notes
Notes:
svn path=/head/; revision=106852
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index e0886ed7afdb..2ed1eea375c0 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -6,7 +6,9 @@ PROGNAME= install SRCS= xinstall.c MAN= install.1 -.if defined(BOOTSTRAPPING) +.if defined(BOOTSTRAPPING) && \ + ( ${BOOTSTRAPPING} < 400021 || \ + ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500007 )) .PATH: ${.CURDIR}/../../lib/libc/gen SRCS+= strtofflags.c .endif |