Wed Jun 17 20:18:33 2009 UTC ()
Pull up following revision(s) (requested by christos in ticket #808):
	external/bsd/am-utils/lib/libamu/mkconf: revision 1.2
PR/41580: Hauke Fath: am-utils uses "netbsd${OSVER}" selector, still.
Changed to "netbsd"


(bouyer)
diff -r1.1 -r1.1.6.1 src/external/bsd/am-utils/lib/libamu/mkconf

cvs diff -r1.1 -r1.1.6.1 src/external/bsd/am-utils/lib/libamu/mkconf (expand / switch to unified diff)

--- src/external/bsd/am-utils/lib/libamu/mkconf 2008/09/19 21:38:41 1.1
+++ src/external/bsd/am-utils/lib/libamu/mkconf 2009/06/17 20:18:33 1.1.6.1
@@ -1,39 +1,39 @@ @@ -1,39 +1,39 @@
1# $NetBSD: mkconf,v 1.1 2008/09/19 21:38:41 christos Exp $ 1# $NetBSD: mkconf,v 1.1.6.1 2009/06/17 20:18:33 bouyer Exp $
2# 2#
3# mkconf 3# mkconf
4# Generate local configuration parameters for amd 4# Generate local configuration parameters for amd
5# 5#
6cat << __EOF 6cat << __EOF
7 7
8/* Automatically generated file, do not edit! */ 8/* Automatically generated file, do not edit! */
9 9
10/* Define name of host machine's architecture (eg. sun4) */ 10/* Define name of host machine's architecture (eg. sun4) */
11#define HOST_ARCH MACHINE 11#define HOST_ARCH MACHINE
12 12
13/* Define name of host machine's cpu (eg. sparc) */ 13/* Define name of host machine's cpu (eg. sparc) */
14#define HOST_CPU MACHINE_ARCH 14#define HOST_CPU MACHINE_ARCH
15  15
16/* Define the header version of (linux) hosts (eg. 2.2.10) */ 16/* Define the header version of (linux) hosts (eg. 2.2.10) */
17#define HOST_HEADER_VERSION "$1" 17#define HOST_HEADER_VERSION "$1"
18 18
19/* Define name of host */ 19/* Define name of host */
20#define HOST_NAME "unknown" 20#define HOST_NAME "unknown"
21 21
22/* Define name and version of host machine (eg. solaris2.5.1) */ 22/* Define name and version of host machine (eg. solaris2.5.1) */
23#define HOST_OS "netbsd$1" 23#define HOST_OS "netbsd$1"
24 24
25/* Define only name of host machine OS (eg. solaris2) */ 25/* Define only name of host machine OS (eg. solaris2) */
26#define HOST_OS_NAME "netbsd`echo $1 | cut -d. -f 1`" 26#define HOST_OS_NAME "netbsd"
27 27
28/* Define only version of host machine (eg. 2.5.1) */ 28/* Define only version of host machine (eg. 2.5.1) */
29#define HOST_OS_VERSION "$1" 29#define HOST_OS_VERSION "$1"
30 30
31/* Define name of host machine's vendor (eg. sun) */ 31/* Define name of host machine's vendor (eg. sun) */
32#define HOST_VENDOR "The NetBSD Foundation, Inc." 32#define HOST_VENDOR "The NetBSD Foundation, Inc."
33 33
34/* Define user name */ 34/* Define user name */
35#define USER_NAME "unknown" 35#define USER_NAME "unknown"
36 36
37/* Define configuration date */ 37/* Define configuration date */
38#define CONFIG_DATE "unknown" 38#define CONFIG_DATE "unknown"
39 39