diff options
author | Guido Günther <agx@sigxcpu.org> | 2010-04-03 17:48:37 +0200 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2010-04-03 17:48:37 +0200 |
commit | 94a695aa8461a225967141d2b7a006d0eada1ea4 (patch) | |
tree | c8470519527845067ae261273e40ee0b97ed6052 /compile | |
parent | document changes and release 0.14-2 (diff) | |
parent | Imported Upstream version 0.15 (diff) | |
download | krb5-auth-dialog-94a695aa8461a225967141d2b7a006d0eada1ea4.tar.gz krb5-auth-dialog-94a695aa8461a225967141d2b7a006d0eada1ea4.tar.bz2 krb5-auth-dialog-94a695aa8461a225967141d2b7a006d0eada1ea4.zip |
Merge commit 'upstream/0.15'
Diffstat (limited to 'compile')
-rwxr-xr-x | compile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand `-c -o'. -scriptversion=2009-04-28.21; # UTC +scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software # Foundation, Inc. @@ -124,9 +124,9 @@ trap "rmdir '$lockdir'; exit 1" 1 2 15 ret=$? if test -f "$cofile"; then - mv "$cofile" "$ofile" + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then - mv "${cofile}bj" "$ofile" + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" |