svn commit: r348609 - head

Ed Maste emaste at FreeBSD.org
Tue Jun 4 12:56:21 UTC 2019


Author: emaste
Date: Tue Jun  4 12:56:20 2019
New Revision: 348609
URL: https://svnweb.freebsd.org/changeset/base/348609

Log:
  Makefile.inc1: clean up stale dependency hacks
  
  Carrying on from r339607, remove ad-hoc dependency cleanup for changes
  prior to June 2018.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Tue Jun  4 10:36:26 2019	(r348608)
+++ head/Makefile.inc1	Tue Jun  4 12:56:20 2019	(r348609)
@@ -939,13 +939,8 @@ _sanity_check: .PHONY .MAKE
 _cleanobj_fast_depend_hack: .PHONY
 # Syscall stubs rewritten in C and obsolete MD assembly implementations
 # Date      SVN Rev  Syscalls
-# 20180404  r332048  sigreturn
-# 20180405  r332080  shmat
-# 20180406  r332119  setlogin
-# 20180411  r332443  exect
-# 20180525  r334224  vadvise
 # 20180604  r334626  brk sbrk
-.for f in brk exect sbrk setlogin shmat sigreturn vadvise
+.for f in brk sbrk
 	@if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \
 	    egrep -qw '${f}\.[sS]' ${OBJTOP}/lib/libc/.depend.${f}.o; then \
 		echo "Removing stale dependencies for ${f} syscall wrappers"; \


More information about the svn-src-head mailing list