Replaced references to /usr/tmp with references to /tmp.
This commit is contained in:
@@ -22,8 +22,8 @@ LLIB=${LLIB-"$EMLINT/llib"} # lint libraries directory
|
||||
LINTLIB=${LINTLIB-$LLIB}
|
||||
CLIB=c.llb
|
||||
|
||||
TMP=/usr/tmp/lint1.$$
|
||||
NEW=/usr/tmp/lint2.$$
|
||||
TMP=/tmp/lint1.$$
|
||||
NEW=/tmp/lint2.$$
|
||||
|
||||
trap "rm -f $TMP $NEW; exit 1" 1 2 15
|
||||
trap "rm -f $TMP $NEW; exit 0" 0
|
||||
|
||||
@@ -39,7 +39,7 @@ extern int _unlink();
|
||||
extern long _lseek();
|
||||
|
||||
static int tmpfil() {
|
||||
static char namebuf[] = "/usr/tmp/plf.xxxxx";
|
||||
static char namebuf[] = "/tmp/plf.xxxxx";
|
||||
int i; char *p,*q;
|
||||
|
||||
i = _getpid();
|
||||
|
||||
Reference in New Issue
Block a user