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/i386/floppies | |
parent | cfe0831504bd6f24b6ad214b0683e6443d87e6ce (diff) |
Build filesystems images in /var/tmp to avoid panic'ing if /tmp is MFS.
Diffstat (limited to 'distrib/i386/floppies')
-rw-r--r-- | distrib/i386/floppies/common/Makefile.inc | 4 | ||||
-rw-r--r-- | distrib/i386/floppies/kc/Makefile | 4 | ||||
-rw-r--r-- | distrib/i386/floppies/ramdisk/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/distrib/i386/floppies/common/Makefile.inc b/distrib/i386/floppies/common/Makefile.inc index e5e12e77e87..18105086044 100644 --- a/distrib/i386/floppies/common/Makefile.inc +++ b/distrib/i386/floppies/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.3 1997/04/19 21:26:11 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1997/05/11 20:01:56 millert Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -11,7 +11,7 @@ VND_DEV= /dev/${VND}a VND_RDEV= /dev/r${VND}a IMAGE?= xxx${REV}.fs PID!= echo $$$$ -REALIMAGE= /tmp/image.${PID} +REALIMAGE= /var/tmp/image.${PID} MDEC= ${DESTDIR}/usr/mdec LISTS= ${COMMONDIR}/list ${.CURDIR}/list diff --git a/distrib/i386/floppies/kc/Makefile b/distrib/i386/floppies/kc/Makefile index b42c060d3ac..3fb30215943 100644 --- a/distrib/i386/floppies/kc/Makefile +++ b/distrib/i386/floppies/kc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 1997/04/17 02:10:40 niklas Exp $ +# $OpenBSD: Makefile,v 1.14 1997/05/11 20:01:55 millert Exp $ TOP= ${.CURDIR}/.. @@ -11,7 +11,7 @@ VND_DEV= /dev/${VND}a VND_RDEV= /dev/r${VND}a IMAGE?= xxx-${REV}.fs PID!= echo $$$$ -REALIMAGE!= echo /tmp/image.${PID} +REALIMAGE!= echo /var/tmp/image.${PID} MDEC= ${DESTDIR}/usr/mdec LIST= ${.CURDIR}/list diff --git a/distrib/i386/floppies/ramdisk/Makefile b/distrib/i386/floppies/ramdisk/Makefile index 9c58fa8d34c..8922e5b3bd3 100644 --- a/distrib/i386/floppies/ramdisk/Makefile +++ b/distrib/i386/floppies/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 1997/05/10 02:13:13 tholo Exp $ +# $OpenBSD: Makefile,v 1.18 1997/05/11 20:01:57 millert Exp $ TOP= ${.CURDIR}/.. @@ -17,7 +17,7 @@ VND_DEV= /dev/${VND}a VND_RDEV= /dev/r${VND}a VND_CRDEV= /dev/r${VND}c PID!= echo $$$$ -REALIMAGE!= echo /tmp/image.${PID} +REALIMAGE!= echo /var/tmp/image.${PID} LISTFLOPPY= ${.CURDIR}/list_floppy all: ${FS} |