]> git.pld-linux.org Git - packages/gawk.git/commitdiff
- use ${TEMDIR:-/tmp} instead /tmp in base directory name for temporary files.
authorkloczek <kloczek@pld-linux.org>
Wed, 16 May 2001 10:12:07 +0000 (10:12 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gawk-mktemp.patch -> 1.2

gawk-mktemp.patch

index 25b5f89a09389022f8f1afa97f13368fadad6a6f..66c11b4edbd52c8cc030d16cee962fa0e245206c 100644 (file)
@@ -4,8 +4,8 @@
  # Arnold Robbins, arnold@gnu.ai.mit.edu, Public Domain
  # July 1993
  
-+igs=`mktemp /tmp/ig.s.XXXXXX` || exit 1
-+ige=`mktemp /tmp/ig.e.XXXXXX` || exit 1
++igs=`mktemp ${TEMDIR:-/tmp}/ig.s.XXXXXX` || exit 1
++ige=`mktemp ${TEMDIR:-/tmp}/ig.e.XXXXXX` || exit 1
 +
  if [ "$1" = debug ]
  then
This page took 0.514551 seconds and 4 git commands to generate.