Author: kevans
Date: Sat Jan 25 04:48:46 2020
New Revision: 357105
URL: https://svnweb.freebsd.org/changeset/base/357105

Log:
  MFC r328560: Don't use an .OBJDIR for 'make sysent'.

Modified:
  stable/11/sys/amd64/linux/Makefile
  stable/11/sys/amd64/linux32/Makefile
  stable/11/sys/compat/cloudabi32/Makefile
  stable/11/sys/compat/cloudabi64/Makefile
  stable/11/sys/compat/freebsd32/Makefile
  stable/11/sys/compat/svr4/Makefile
  stable/11/sys/i386/ibcs2/Makefile
  stable/11/sys/i386/linux/Makefile
  stable/11/sys/kern/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/amd64/linux/Makefile
==============================================================================
--- stable/11/sys/amd64/linux/Makefile  Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/amd64/linux/Makefile  Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/amd64/linux32/Makefile
==============================================================================
--- stable/11/sys/amd64/linux32/Makefile        Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/amd64/linux32/Makefile        Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/compat/cloudabi32/Makefile
==============================================================================
--- stable/11/sys/compat/cloudabi32/Makefile    Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/compat/cloudabi32/Makefile    Sat Jan 25 04:48:46 2020        
(r357105)
@@ -1,5 +1,8 @@
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/compat/cloudabi64/Makefile
==============================================================================
--- stable/11/sys/compat/cloudabi64/Makefile    Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/compat/cloudabi64/Makefile    Sat Jan 25 04:48:46 2020        
(r357105)
@@ -1,5 +1,8 @@
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/compat/freebsd32/Makefile
==============================================================================
--- stable/11/sys/compat/freebsd32/Makefile     Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/compat/freebsd32/Makefile     Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/compat/svr4/Makefile
==============================================================================
--- stable/11/sys/compat/svr4/Makefile  Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/compat/svr4/Makefile  Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/i386/ibcs2/Makefile
==============================================================================
--- stable/11/sys/i386/ibcs2/Makefile   Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/i386/ibcs2/Makefile   Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent, isc_sysent or xenix_sysent only"
 

Modified: stable/11/sys/i386/linux/Makefile
==============================================================================
--- stable/11/sys/i386/linux/Makefile   Sat Jan 25 03:52:16 2020        
(r357104)
+++ stable/11/sys/i386/linux/Makefile   Sat Jan 25 04:48:46 2020        
(r357105)
@@ -2,6 +2,9 @@
 #
 # $FreeBSD$
 
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
 all:
        @echo "make sysent only"
 

Modified: stable/11/sys/kern/Makefile
==============================================================================
--- stable/11/sys/kern/Makefile Sat Jan 25 03:52:16 2020        (r357104)
+++ stable/11/sys/kern/Makefile Sat Jan 25 04:48:46 2020        (r357105)
@@ -1,7 +1,10 @@
 #      @(#)Makefile    8.2 (Berkeley) 3/21/94
 # $FreeBSD$
-
+#
 # Makefile for init_sysent
+
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
 
 all:
        @echo "make sysent only"
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to