1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

As a quick fix, use /tmp instead of the currently hardcoded /usr/tmp.

This commit is contained in:
Neil Blakey-Milner 2001-01-03 11:16:46 +00:00
parent dd8f7281a2
commit 48fce3facf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36636
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ my ($user, $origdir, $portname, $tmpdir, $wdpdir, $predir, $hmake);
chomp ($user = `logname`);
chomp ($origdir = `pwd`);
chomp ($portname = `basename $origdir`);
$tmpdir = "/usr/tmp/$user.$portname";
$tmpdir = "/tmp/$user.$portname";
$wdpdir = "$tmpdir/wdp";
$predir = "$tmpdir/prefix";

View File

@ -31,7 +31,7 @@ my ($user, $origdir, $portname, $tmpdir, $wdpdir, $predir, $hmake);
chomp ($user = `logname`);
chomp ($origdir = `pwd`);
chomp ($portname = `basename $origdir`);
$tmpdir = "/usr/tmp/$user.$portname";
$tmpdir = "/tmp/$user.$portname";
$wdpdir = "$tmpdir/wdp";
$predir = "$tmpdir/prefix";