diff options
author | jmz <jmz@FreeBSD.org> | 2000-03-03 22:07:51 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2000-03-03 22:07:51 +0000 |
commit | 3b22e32e6a701544cb9c3ee20c573c85ca524aec (patch) | |
tree | e2c945011feda56cdbae9ea87e4c1a5b39520f97 /print/dvips | |
parent | e806883f106623333f742996a0512becfacbea6e (diff) | |
download | FreeBSD-ports-3b22e32e6a701544cb9c3ee20c573c85ca524aec.zip FreeBSD-ports-3b22e32e6a701544cb9c3ee20c573c85ca524aec.tar.gz |
Do not create temporary files in ${SCRIPTDIR}. Use ${WRKDIR}.
Pointed out by: asami
Diffstat (limited to 'print/dvips')
-rw-r--r-- | print/dvips/scripts/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/dvips/scripts/configure b/print/dvips/scripts/configure index aedbb29..3b3a431 100644 --- a/print/dvips/scripts/configure +++ b/print/dvips/scripts/configure @@ -35,7 +35,7 @@ for i in $RES; do shift done -rm -f $SCRIPTDIR/post-install +rm -f $WRKDIR/post-install echo echo "Choose a font directory for automatic font generation." echo "------------------------------------------------------" @@ -47,7 +47,7 @@ echo -n "font directory [$CACHE]: " read answ; if [ "$answ" != "" ]; then CACHE=$answ; else - echo "mkdir -p $CACHE/pk; chmod 1777 $CACHE/pk" > $SCRIPTDIR/post-install + echo "mkdir -p $CACHE/pk; chmod 1777 $CACHE/pk" > $WRKDIR/post-install fi sed -e s:/usr/lib/tex:$PREFIX/share/texmf: \ |