diff options
author | Ted Gould <ted@gould.cx> | 2010-08-12 13:08:18 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-12 13:08:18 -0500 |
commit | c539a45070ac3d9f3036eaec40ee34025800cddc (patch) | |
tree | 7f4c937d84e9a1b5a9ae70c45dfbdeed8efb223f /compile | |
parent | 1fa02756377589c14a80c0f96426f5b902bede03 (diff) | |
parent | ada8fb9e0a3b41d1b21a3bf9b86d5be0f647051f (diff) | |
download | ayatana-indicator-messages-c539a45070ac3d9f3036eaec40ee34025800cddc.tar.gz ayatana-indicator-messages-c539a45070ac3d9f3036eaec40ee34025800cddc.tar.bz2 ayatana-indicator-messages-c539a45070ac3d9f3036eaec40ee34025800cddc.zip |
Import upstream version 0.3.9
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-10-06.20; # UTC +scriptversion=2009-04-28.21; # 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 - test "$cofile" = "$ofile" || mv "$cofile" "$ofile" + mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then - test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" + mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" |