diff options
author | Ted Gould <ted@gould.cx> | 2011-06-21 15:53:04 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-06-21 15:53:04 -0500 |
commit | 3d2e1830cf33be94aed9504c3740ba5c1674e30f (patch) | |
tree | 1356e4279ac43f3a4984cbe55f925c9c8d43680a /compile | |
parent | 7987a6444398781d23ea18637ce70de271418c2b (diff) | |
parent | 39419547e2271554cf4ccf507b3a65d4b6327c27 (diff) | |
download | ayatana-indicator-messages-3d2e1830cf33be94aed9504c3740ba5c1674e30f.tar.gz ayatana-indicator-messages-3d2e1830cf33be94aed9504c3740ba5c1674e30f.tar.bz2 ayatana-indicator-messages-3d2e1830cf33be94aed9504c3740ba5c1674e30f.zip |
* New upstream release.
* GTK 3
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" |