diff options
author | dirk <dirk@FreeBSD.org> | 2001-04-16 19:50:14 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-04-16 19:50:14 +0800 |
commit | 6545a0761675e7e5d68f15cf050a8fd867ea663d (patch) | |
tree | 3a24cbfd25a7b684816e8414c046822b15e34389 /www/mod_php3 | |
parent | 57c9cd66757b59a758c618d361c31371345b89fd (diff) | |
download | freebsd-ports-gnome-6545a0761675e7e5d68f15cf050a8fd867ea663d.tar.gz freebsd-ports-gnome-6545a0761675e7e5d68f15cf050a8fd867ea663d.tar.zst freebsd-ports-gnome-6545a0761675e7e5d68f15cf050a8fd867ea663d.zip |
Use /usr/bin/mktemp to generate temporary file.
Taken from: ports/net/netsaint-plugins/scripts/configure 8-)
Diffstat (limited to 'www/mod_php3')
-rw-r--r-- | www/mod_php3/scripts/configure.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index b09c72ded1d5..5e7cad763a09 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -5,6 +5,8 @@ if [ -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc ]; then exit fi +tempfile=`/usr/bin/mktemp -t checklist` + if [ "${BATCH}" ]; then set \"zlib\" \"MySQL\" else @@ -32,14 +34,14 @@ gettext "gettext library support" OFF \ YP "YP/NIS support" OFF \ sysvsem "System V semaphore support" OFF \ sysvshm "System V shared memory support" OFF \ -2> /tmp/checklist.tmp.$$ +2> $tempfile retval=$? - if [ -s /tmp/checklist.tmp.$$ ]; then - set `cat /tmp/checklist.tmp.$$` + if [ -s $tempfile ]; then + set `cat $tempfile` fi - rm -f /tmp/checklist.tmp.$$ + rm -f $tempfile case $retval in 0) if [ -z "$*" ]; then |