diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-11 20:02:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-11 20:02:02 +0000 |
commit | fcd818a7b442ee8dc6f0660473a218a403eed641 (patch) | |
tree | 446b6543e21e267316a6882888ee23aa0dc918c3 /distrib/arc/floppies | |
parent | cfe0831504bd6f24b6ad214b0683e6443d87e6ce (diff) |
Build filesystems images in /var/tmp to avoid panic'ing if /tmp is MFS.
Diffstat (limited to 'distrib/arc/floppies')
-rw-r--r-- | distrib/arc/floppies/inst-common/Makefile.inc | 4 | ||||
-rw-r--r-- | distrib/arc/floppies/kernel/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/distrib/arc/floppies/inst-common/Makefile.inc b/distrib/arc/floppies/inst-common/Makefile.inc index c624ec04229..89e8c1a9c60 100644 --- a/distrib/arc/floppies/inst-common/Makefile.inc +++ b/distrib/arc/floppies/inst-common/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.1 1996/10/10 10:06:04 deraadt Exp $ +# $Id: Makefile.inc,v 1.2 1997/05/11 20:02:00 millert Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -10,7 +10,7 @@ VND?= vnd0 VND_DEV= /dev/${VND}c VND_RDEV= /dev/r${VND}c PID!= echo $$$$ -REALIMAGE!= echo /tmp/image.${PID} +REALIMAGE!= echo /var/tmp/image.${PID} IMAGE?= inst${REV}.fs MDEC= ${DESTDIR}/usr/mdec diff --git a/distrib/arc/floppies/kernel/Makefile b/distrib/arc/floppies/kernel/Makefile index 91893b4ff16..079417008cc 100644 --- a/distrib/arc/floppies/kernel/Makefile +++ b/distrib/arc/floppies/kernel/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/10/10 10:06:14 deraadt Exp $ +# $Id: Makefile,v 1.2 1997/05/11 20:02:01 millert Exp $ .include "../Makefile.inc" @@ -8,7 +8,7 @@ VND_DEV= /dev/${VND}c VND_RDEV= /dev/r${VND}c IMAGE= kc${REV}.fs PID!= echo $$$$ -REALIMAGE!= echo /tmp/image.${PID} +REALIMAGE!= echo /var/tmp/image.${PID} MDEC= ${DESTDIR}/usr/mdec LISTS= ${.CURDIR}/list |