eliminate dangling references to config.old;
from Klaus Klein in PR misc/3295.
This commit is contained in:
parent
2622084d37
commit
8a50dcb5df
|
@ -177,7 +177,7 @@ are as follows:
|
|||
[ 7.1M gzipped, 30.4M uncompressed ]
|
||||
|
||||
ksrc12 This set contains the sources to the NetBSD 1.2
|
||||
kernel, config(8), config.old(8) and dbsym(8).
|
||||
kernel, config(8), and dbsym(8).
|
||||
[ 6.0M gzipped, 27.0M uncompressed ]
|
||||
|
||||
ssrc12 This set contains the "share" sources, which include
|
||||
|
|
|
@ -72,4 +72,3 @@
|
|||
./usr/lib/libwrap_pic.a
|
||||
./usr/lib/libz_pic.a
|
||||
./usr/lib/scrt0.o
|
||||
./usr/sbin/config.old
|
||||
|
|
|
@ -6,4 +6,3 @@
|
|||
./usr/share/man/cat3/dlsym.0
|
||||
./usr/share/man/cat3/dlctl.0
|
||||
./usr/share/man/cat3/dlerror.0
|
||||
./usr/share/man/cat8/config.old.0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
#
|
||||
# $NetBSD: makesrctars,v 1.3 1997/02/18 07:06:00 mikel Exp $
|
||||
# $NetBSD: makesrctars,v 1.4 1997/03/06 23:41:23 mikel Exp $
|
||||
#
|
||||
# Make source code tarballs.
|
||||
|
||||
|
@ -34,7 +34,6 @@ find . \
|
|||
\! \( \( -path ./gnu -o -path ./share -o -path ./domestic \) -prune \) \
|
||||
\! \( -path ./sys -prune \) \
|
||||
\! \( -path ./usr.sbin/config -prune \) \
|
||||
\! \( -path ./usr.sbin/config.old -prune \) \
|
||||
\! \( -path ./usr.sbin/dbsym -prune \) \
|
||||
\! \( -name CVS -prune \) \! \( -name obj -prune \) -print | \
|
||||
sort | pax -wv -d -s'|^./|./usr/src/|' | gzip | \
|
||||
|
@ -51,7 +50,7 @@ find gnu \
|
|||
chmod 444 ${DESTDIR}/gsrc${RELEASE}/*
|
||||
|
||||
mkdir ${DESTDIR}/ksrc${RELEASE}
|
||||
find sys usr.sbin/config usr.sbin/config.old usr.sbin/dbsym \
|
||||
find sys usr.sbin/config usr.sbin/dbsym \
|
||||
\! \( -name CVS -prune \) \! \( -name obj -prune \) -print | \
|
||||
sort | pax -wv -d -s'|^|./usr/src/|' | gzip | \
|
||||
split -b ${SPLITSIZE} - ${DESTDIR}/ksrc${RELEASE}/ksrc${RELEASE}.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.inc,v 1.2 1996/03/22 05:14:27 scottr Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.3 1997/03/06 23:41:26 mikel Exp $
|
||||
#
|
||||
# etc.hp300/Makefile.inc -- hp300-specific etc Makefile targets
|
||||
|
||||
|
@ -6,14 +6,14 @@
|
|||
snap_md: netbsd-gen.gz netbsd-dl.gz
|
||||
|
||||
netbsd-gen:
|
||||
cd ${.CURDIR}/../sys/arch/hp300/conf && config.old GENERIC
|
||||
cd ${.CURDIR}/../sys/arch/hp300/conf && config GENERIC
|
||||
cd ${.CURDIR}/../sys/arch/hp300/compile/GENERIC && \
|
||||
make clean && make depend && make
|
||||
cp ${.CURDIR}/../sys/arch/hp300/compile/GENERIC/netbsd \
|
||||
${DESTDIR}/snapshot/netbsd-gen
|
||||
|
||||
netbsd-dl:
|
||||
cd ${.CURDIR}/../sys/arch/hp300/conf && config.old DISKLESS
|
||||
cd ${.CURDIR}/../sys/arch/hp300/conf && config DISKLESS
|
||||
cd ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS && \
|
||||
make clean && make depend && make
|
||||
cp ${.CURDIR}/../sys/arch/hp300/compile/DISKLESS/netbsd \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: ccd.4,v 1.7 1997/01/05 22:53:08 cjs Exp $
|
||||
.\" $NetBSD: ccd.4,v 1.8 1997/03/06 23:41:29 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1994 Jason Downs.
|
||||
.\" Copyright (c) 1994, 1995, 1996 Jason R. Thorpe.
|
||||
|
@ -148,7 +148,6 @@ Utah.
|
|||
.Xr MAKEDEV 8 ,
|
||||
.Xr ccdconfig 8 ,
|
||||
.Xr config 8 ,
|
||||
.Xr config.old 8 ,
|
||||
.Xr fsck 8 ,
|
||||
.Xr mount 8 ,
|
||||
.Xr newfs 8 .
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: vnd.4,v 1.1 1995/12/30 18:10:48 thorpej Exp $
|
||||
.\" $NetBSD: vnd.4,v 1.2 1997/03/06 23:41:30 mikel Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1995 Jason R. Thorpe.
|
||||
.\" All rights reserved.
|
||||
|
@ -80,7 +80,6 @@ Utah.
|
|||
.Sh SEE ALSO
|
||||
.Xr MAKEDEV 8 ,
|
||||
.Xr config 8 ,
|
||||
.Xr config.old 8 ,
|
||||
.Xr fsck 8 ,
|
||||
.Xr mount 8 ,
|
||||
.Xr newfs 8 ,
|
||||
|
|
Loading…
Reference in New Issue