svn commit: r328560 - in head/sys: amd64/linux amd64/linux32 compat/cloudabi32 compat/cloudabi64 compat/freebsd32 i386/ibcs2 i386/linux kern
Bryan Drewery
bdrewery at FreeBSD.org
Mon Jan 29 19:14:16 UTC 2018
Author: bdrewery
Date: Mon Jan 29 19:14:15 2018
New Revision: 328560
URL: https://svnweb.freebsd.org/changeset/base/328560
Log:
Don't use an .OBJDIR for 'make sysent'.
Reported by: emaste, jhb
Sponsored by: Dell EMC
Modified:
head/sys/amd64/linux/Makefile
head/sys/amd64/linux32/Makefile
head/sys/compat/cloudabi32/Makefile
head/sys/compat/cloudabi64/Makefile
head/sys/compat/freebsd32/Makefile
head/sys/i386/ibcs2/Makefile
head/sys/i386/linux/Makefile
head/sys/kern/Makefile
Modified: head/sys/amd64/linux/Makefile
==============================================================================
--- head/sys/amd64/linux/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/amd64/linux/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -2,6 +2,9 @@
#
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/amd64/linux32/Makefile
==============================================================================
--- head/sys/amd64/linux32/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/amd64/linux32/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -2,6 +2,9 @@
#
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/compat/cloudabi32/Makefile
==============================================================================
--- head/sys/compat/cloudabi32/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/compat/cloudabi32/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -1,5 +1,8 @@
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/compat/cloudabi64/Makefile
==============================================================================
--- head/sys/compat/cloudabi64/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/compat/cloudabi64/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -1,5 +1,8 @@
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/compat/freebsd32/Makefile
==============================================================================
--- head/sys/compat/freebsd32/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/compat/freebsd32/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -2,6 +2,9 @@
#
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/i386/ibcs2/Makefile
==============================================================================
--- head/sys/i386/ibcs2/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/i386/ibcs2/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -2,6 +2,9 @@
#
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent, isc_sysent or xenix_sysent only"
Modified: head/sys/i386/linux/Makefile
==============================================================================
--- head/sys/i386/linux/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/i386/linux/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -2,6 +2,9 @@
#
# $FreeBSD$
+# Don't use an OBJDIR
+.OBJDIR: ${.CURDIR}
+
all:
@echo "make sysent only"
Modified: head/sys/kern/Makefile
==============================================================================
--- head/sys/kern/Makefile Mon Jan 29 18:50:45 2018 (r328559)
+++ head/sys/kern/Makefile Mon Jan 29 19:14:15 2018 (r328560)
@@ -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"
More information about the svn-src-all
mailing list