diff options
author | ache <ache@FreeBSD.org> | 1996-11-11 07:43:41 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-11-11 07:43:41 +0000 |
commit | 311d1f0a2f8a5af76c4d7154e891e738d3a9f7f3 (patch) | |
tree | d62c4bca6056f9b45e37eb2f91d010a53c470897 /converters | |
parent | a85e0cde6368544d3aa18ea67d47f1542d8cc578 (diff) | |
download | FreeBSD-ports-311d1f0a2f8a5af76c4d7154e891e738d3a9f7f3.zip FreeBSD-ports-311d1f0a2f8a5af76c4d7154e891e738d3a9f7f3.tar.gz |
/usr/tmp -> /var/tmp
Diffstat (limited to 'converters')
-rw-r--r-- | converters/mpack/files/patch-ab | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/converters/mpack/files/patch-ab b/converters/mpack/files/patch-ab new file mode 100644 index 0000000..81754ba --- /dev/null +++ b/converters/mpack/files/patch-ab @@ -0,0 +1,54 @@ +*** unixos.c.bak Fri Feb 17 00:39:50 1995 +--- unixos.c Mon Nov 11 10:19:28 1996 +*************** +*** 89,95 **** +--- 89,99 ---- + strcpy(buf, getenv("TMPDIR")); + } + else { ++ #ifdef __FreeBSD__ ++ strcpy(buf, "/var/tmp"); ++ #else + strcpy(buf, "/usr/tmp"); ++ #endif + } + strcat(buf, "/m-prts-"); + p = getenv("USER"); +*** unixpk.man.bak Fri Feb 17 00:39:50 1995 +--- unixpk.man Mon Nov 11 10:19:46 1996 +*************** +*** 136,142 **** + .SH ENVIRONMENT + .TP + .B TMPDIR +! Directory to store temporary files. Default is /usr/tmp. + .TP + .B SPLITSIZE + Default value of the -m switch. +--- 136,142 ---- + .SH ENVIRONMENT + .TP + .B TMPDIR +! Directory to store temporary files. Default is /var/tmp. + .TP + .B SPLITSIZE + Default value of the -m switch. +*** unixunpk.man.bak Fri Feb 17 00:39:50 1995 +--- unixunpk.man Mon Nov 11 10:19:59 1996 +*************** +*** 107,113 **** + .SH ENVIRONMENT + .TP + .B TMPDIR +! Directory to store temporary files. Default is /usr/tmp. + .SH FILES + .TP + .B $TMPDIR/m-prts-$USER/ +--- 107,113 ---- + .SH ENVIRONMENT + .TP + .B TMPDIR +! Directory to store temporary files. Default is /var/tmp. + .SH FILES + .TP + .B $TMPDIR/m-prts-$USER/ |