diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-05-02 01:18:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-05-02 01:18:41 +0000 |
commit | 7a1a295d3c96654ef42744df64c78ded752a63b7 (patch) | |
tree | 91b587e5760d482f9a916695f2228895c9694a0a /distrib | |
parent | 06383782b4577dde338b0d23b29fcc6808bf807e (diff) |
refer do the nested FFS filesystem by name FS, since it is similar to
a miniroot.fs elsewhere (but not made available because noone needs it)
this reduces the diff delta further...
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sgi/cdfs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/sgi/cdfs/Makefile b/distrib/sgi/cdfs/Makefile index ad144589196..f27c58534d5 100644 --- a/distrib/sgi/cdfs/Makefile +++ b/distrib/sgi/cdfs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.24 2019/05/01 20:53:55 deraadt Exp $ +# $OpenBSD: Makefile,v 1.25 2019/05/02 01:18:40 deraadt Exp $ FS= miniroot${OSrev}.fs CDROM= cd${OSrev}.iso @@ -54,7 +54,7 @@ ${CDROM}: /usr/mdec/sgivol -l boot64 sash64 `cat vnd` vnconfig -u `cat vnd` rm -f vnd - dd if=${FFS} of=${CDROM} bs=512 seek=${SGIVOLSZ} + dd if=${FS} of=${CDROM} bs=512 seek=${SGIVOLSZ} unconfig: -umount -f ${MOUNT_POINT} @@ -66,7 +66,7 @@ install: .endif clean cleandir: - rm -f ${CDROM} ${FFS} xfs512.bin xfs + rm -f ${CDROM} ${FS} xfs512.bin xfs rm -rf cd-dir .include <bsd.obj.mk> |