remove special handling for stale ptrace dependencies

r318957 added special handling for stale ptrace dependency files to
support a -DNO_CLEAN build in a tree last built before r305012.  That
revision is now over a year and a half old, so retire the special case.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2018-04-05 03:26:42 +00:00
parent f8ccf17383
commit 523bfea2a1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=332057

View File

@ -804,10 +804,9 @@ _sanity_check: .PHONY .MAKE
_cleanobj_fast_depend_hack: .PHONY
# Syscall stubs rewritten in C and obsolete MD assembly implementations
# Date SVN Rev Syscalls
# 20160829 r305012 ptrace
# 20170624 r320278 fstat fstatat fstatfs getdirentries getfsstat statfs
# 20180404 r332048 sigreturn
.for f in fstat fstatat fstatfs getdirentries getfsstat ptrace sigreturn statfs
.for f in fstat fstatat fstatfs getdirentries getfsstat sigreturn statfs
.if exists(${OBJTOP}/lib/libc/.depend.${f}.o)
@if egrep -qw '${f}\.[sS]' \
${OBJTOP}/lib/libc/.depend.${f}.o; then \