diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-10 06:40:29 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-10 06:40:29 +0000 |
commit | 20fc2744f36e2d93bde52e255fd56812eb35bda8 (patch) | |
tree | a070ce941bd1c8e83538a1f682fa78fb4c23064e /updater/bzip2-1.0.3/bzdiff | |
parent | 2a63014742e62d7d036ba1009ced1a50cab16e93 (diff) |
Updated bzip2 to version 1.0.6
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@554 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/bzip2-1.0.3/bzdiff')
-rw-r--r-- | updater/bzip2-1.0.3/bzdiff | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/bzip2-1.0.3/bzdiff b/updater/bzip2-1.0.3/bzdiff index 3c2eb85..6fc38f9 100644 --- a/updater/bzip2-1.0.3/bzdiff +++ b/updater/bzip2-1.0.3/bzdiff @@ -12,7 +12,7 @@ # necessary) and fed to cmp or diff. The exit status from cmp # or diff is preserved. -PATH="/usr/bin:$PATH"; export PATH +PATH="/usr/bin:/bin:$PATH"; export PATH prog=`echo $0 | sed 's|.*/||'` case "$prog" in *cmp) comp=${CMP-cmp} ;; @@ -37,7 +37,7 @@ if test -z "$FILES"; then echo "Usage: $prog [${comp}_options] file [file]" exit 1 fi -tmp=`tempfile -d /tmp -p bz` || { +tmp=`mktemp ${TMPDIR:-/tmp}/bzdiff.XXXXXXXXXX` || { echo 'cannot create a temporary file' >&2 exit 1 } |