diff options
author | jkh <jkh@FreeBSD.org> | 1995-02-09 08:36:23 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-02-09 08:36:23 +0000 |
commit | 75ef70cb02684d8a5c6e856e94b546fd491731ea (patch) | |
tree | ed64027678238e8026ddda773f675d498dce44d0 | |
parent | a23ae9f606a82c4eeb74512d6008c322576c3261 (diff) | |
download | FreeBSD-src-75ef70cb02684d8a5c6e856e94b546fd491731ea.zip FreeBSD-src-75ef70cb02684d8a5c6e856e94b546fd491731ea.tar.gz |
Andreas Schulz asks:
I have seen two strange things in it :-).
The first: in CLEANFILES is CPIO3 referenced, that leads to the
deletion of half of the scripts that are in the source. Intended ?
Second: The comment above the CPIO3= line says that bininst must be
the last on the floppy, but setup follows it now ?
And I reply:
This was all wrong! Fixed! Thanks!
Submitted by: ats
-rw-r--r-- | release/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile index f00630f..e5b8751 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.101 1995/02/02 08:03:24 ache Exp $ +# $Id: Makefile,v 1.102 1995/02/02 12:29:03 jkh Exp $ # FLOPPY= fd0 @@ -28,8 +28,6 @@ CPIO1+= ftp rsh sed telnet rlogin grep CPIO2= etc/services etc/protocols -# bininst MUST be the last file on the cpio floppy. It's used to detect -# a successful extraction. CPIO3= scripts/miscfuncs.sh scripts/instdist.sh scripts/netinst.sh \ scripts/adduser.sh scripts/bininst.sh scripts/setup.sh @@ -37,7 +35,7 @@ CPIO4= /usr/sbin/tzsetup CPIO4B= tzsetup # Somewhat on the rough side... -CLEANFILES+= *.o *.c *.cache *.mk *.lo ${CPIO1} ${CPIO2} ${CPIO3} ${CPIO4B} +CLEANFILES+= *.o *.c *.cache *.mk *.lo ${CPIO1} ${CPIO2} ${CPIO4B} CLEANFILES+= *.flp *.gz CLEANFILES+= boot_flp cpio_flp_1 kernel.* kernel *.core |