diff options
author | hosokawa <hosokawa@FreeBSD.org> | 1999-07-05 07:15:42 +0000 |
---|---|---|
committer | hosokawa <hosokawa@FreeBSD.org> | 1999-07-05 07:15:42 +0000 |
commit | aa73d313009a2267e2a77f1579ccff2dd197a367 (patch) | |
tree | 75df4b054fc675431340436a9e5a3d9c13c1e963 /release/Makefile | |
parent | b38bc132ac59c51c8d3b4453254d4d7210fbec93 (diff) | |
download | FreeBSD-src-aa73d313009a2267e2a77f1579ccff2dd197a367.zip FreeBSD-src-aa73d313009a2267e2a77f1579ccff2dd197a367.tar.gz |
My last modification for PC-card boot.flp was incomplete, and one more patch
is needed.
This seems a sort of quick-hack, but it's hard to fix it in proper way.
I'll do it later.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/release/Makefile b/release/Makefile index c99ecc1..e476ef6 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.491 1999/06/17 19:04:43 markm Exp $ +# $Id: Makefile,v 1.492 1999/07/04 13:31:05 hosokawa Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -135,7 +135,12 @@ BOOTSTRAPUTILS+= /usr/bin/cpio CRUNCH_TARGETS= boot fixit .endif +.if ${MACHINE_ARCH} == "i386" +# Make both PC-card boot.flp and plain boot.flp +EXTRAS= floppies cdrom.1 ftp.1 +.else EXTRAS= cdrom.1 ftp.1 +.endif .if !defined(NODOC) DOCREL= doc.1 |