diff options
author | phk <phk@FreeBSD.org> | 2003-04-15 21:29:11 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-04-15 21:29:11 +0000 |
commit | bb6f66c94d89e2dc35bf7a97b362f0021674f225 (patch) | |
tree | 0ad50b8584d8c7ac298f1a942e599e8dad176651 | |
parent | 251a672e085fb012baa03909c1957eef11be5bd2 (diff) | |
download | FreeBSD-src-bb6f66c94d89e2dc35bf7a97b362f0021674f225.zip FreeBSD-src-bb6f66c94d89e2dc35bf7a97b362f0021674f225.tar.gz |
Bump the config version to force people to upgrade their config(8)
so the fix for emitting multiple instances of .o files will prevent
link errors on LINT.
-rw-r--r-- | sys/conf/Makefile.alpha | 2 | ||||
-rw-r--r-- | sys/conf/Makefile.amd64 | 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 | ||||
-rw-r--r-- | sys/conf/Makefile.sparc64 | 2 | ||||
-rw-r--r-- | usr.sbin/config/configvers.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index df48d84..3055712 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 .if !defined(S) .if exists(./@/.) diff --git a/sys/conf/Makefile.amd64 b/sys/conf/Makefile.amd64 index 77bbc37..50775e1 100644 --- a/sys/conf/Makefile.amd64 +++ b/sys/conf/Makefile.amd64 @@ -18,7 +18,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 62e871c..4f9d0a3 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.ia64 b/sys/conf/Makefile.ia64 index 8aee4f5..04bf91f 100644 --- a/sys/conf/Makefile.ia64 +++ b/sys/conf/Makefile.ia64 @@ -19,7 +19,7 @@ GCC3= you bet # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 STD8X16FONT?= iso diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 0e5d57a..fb26993 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -19,7 +19,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 .if !defined(S) .if exists(./@/.) diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index ef48108..e46125a 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 # Temporary stuff while we're still embryonic NO_MODULES?= yes diff --git a/sys/conf/Makefile.sparc64 b/sys/conf/Makefile.sparc64 index 8666315..e2e2602 100644 --- a/sys/conf/Makefile.sparc64 +++ b/sys/conf/Makefile.sparc64 @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500011 +%VERSREQ= 500012 STD8X16FONT?= iso diff --git a/usr.sbin/config/configvers.h b/usr.sbin/config/configvers.h index 580ea83..1eef6f6 100644 --- a/usr.sbin/config/configvers.h +++ b/usr.sbin/config/configvers.h @@ -8,4 +8,4 @@ * * $FreeBSD$ */ -#define CONFIGVERS 500011 +#define CONFIGVERS 500012 |