diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-02-27 15:03:51 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-02-27 15:03:51 +0100 |
commit | 107c1a5e1127a047d79eb4525354cdbc7c2d83c3 (patch) | |
tree | 1731c819d0885e0553e3c7d792392fe2012f7e91 /compile | |
parent | 89496d4af29bbdab2ed81e4f7e8448a45916d3ed (diff) |
update from latest automake
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1066 ef36b2f9-881f-0410-afb5-c4e39611909c
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" |