diff options
author | Warner Losh <imp@FreeBSD.org> | 2001-06-30 06:29:47 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2001-06-30 06:29:47 +0000 |
commit | 7ef33e2e397fdceeee4b5dd942b6def6fd5c9206 (patch) | |
tree | 6e4f0278e893030d5229f9a8e6869e39c875e31f | |
parent | 971470c36c05809375713cf8d2e7c9dd42a266fc (diff) |
Move kernel compile directory from sys/compile/FOO to
sys/compile/${MACHINE}/FOO.
Reviewed by: arch, obrien, peter and
the USENIX terminal room secret kernel cabal
Notes
Notes:
svn path=/head/; revision=79014
-rw-r--r-- | sys/conf/Makefile.alpha | 2 | ||||
-rw-r--r-- | sys/conf/Makefile.i386 | 2 | ||||
-rw-r--r-- | sys/conf/Makefile.ia64 | 2 | ||||
-rw-r--r-- | sys/conf/Makefile.pc98 | 2 | ||||
-rw-r--r-- | sys/conf/Makefile.powerpc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index 5f02ae813f9b..895a29e760cb 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -29,7 +29,7 @@ STD8X16FONT?= iso .if exists(./@/.) S= ./@ .else -S= ../.. +S= ../../.. .endif .endif M= ${MACHINE_ARCH} diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 7e70fd1bd6d2..50e914ed4d3b 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -29,7 +29,7 @@ STD8X16FONT?= iso .if exists(./@/.) S= ./@ .else -S= ../.. +S= ../../.. .endif .endif M= ${MACHINE_ARCH} diff --git a/sys/conf/Makefile.ia64 b/sys/conf/Makefile.ia64 index e52be5d29816..92a36e415a01 100644 --- a/sys/conf/Makefile.ia64 +++ b/sys/conf/Makefile.ia64 @@ -39,7 +39,7 @@ STD8X16FONT?= iso .if exists(./@/.) S= ./@ .else -S= ../.. +S= ../../.. .endif .endif M= ${MACHINE_ARCH} diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index a3a9f56a1864..32f0b938d981 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -31,7 +31,7 @@ KODIR?= /boot/${KERNEL} .if exists(./@/.) S= ./@ .else -S= ../.. +S= ../../.. .endif .endif M= ${MACHINE_ARCH} diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index bd6f1fa009a8..8d630fd03f29 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -32,7 +32,7 @@ STD8X16FONT?= iso .if exists(./@/.) S= ./@ .else -S= ../.. +S= ../../.. .endif .endif M= ${MACHINE_ARCH} |