Author: emaste
Date: Sun Oct 14 00:29:57 2018
New Revision: 339352
URL: https://svnweb.freebsd.org/changeset/base/339352

Log:
  Makefile.inc1: clean up dependencies after r339348
  
  r339348 switched bcopy from .s to .c.  Add ad-hoc dependency cleanup
  as done for similar cases.
  
  Approved by:  re (kib)
  Sponsored by: The FreeBSD Foundation

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1  Sat Oct 13 23:52:55 2018        (r339351)
+++ head/Makefile.inc1  Sun Oct 14 00:29:57 2018        (r339352)
@@ -939,6 +939,15 @@ _cleanobj_fast_depend_hack: .PHONY
                    ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*}; \
        fi
 .endfor
+# 20181013  r339348  bcopy reimplemented as .c
+.for f in bcopy memcpy memmove
+       @if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \
+           egrep -qw 'bcopy\.[sS]' ${OBJTOP}/lib/libc/.depend.${f}.o; then \
+               echo "Removing stale dependencies for bcopy"; \
+               rm -f ${OBJTOP}/lib/libc/.depend.${f}.* \
+                  ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*}; \
+       fi
+.endfor
 # 20181009 track migration from ntp's embedded libevent to updated one
        @if [ -e 
"${OBJTOP}/usr.sbin/ntp/libntpevent/.depend.bufferevent_openssl.o" ] && \
            egrep -q 'contrib/ntp/sntp/libevent/bufferevent_openssl.c' \
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to