aboutsummaryrefslogtreecommitdiff
path: root/compile
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-06-21 15:52:38 -0500
committerTed Gould <ted@gould.cx>2011-06-21 15:52:38 -0500
commit39419547e2271554cf4ccf507b3a65d4b6327c27 (patch)
treeca9c9f1e99e315b66fe829186a1b872a03be4f10 /compile
parent1111499b1ae2a9d717474ebe9a017b2edb789d4a (diff)
parent4fed4ff3571e8ddcbdad352b99d53bd092d2475b (diff)
downloadayatana-indicator-messages-39419547e2271554cf4ccf507b3a65d4b6327c27.tar.gz
ayatana-indicator-messages-39419547e2271554cf4ccf507b3a65d4b6327c27.tar.bz2
ayatana-indicator-messages-39419547e2271554cf4ccf507b3a65d4b6327c27.zip
Import upstream version 0.4.90
Diffstat (limited to 'compile')
-rwxr-xr-xcompile6
1 files changed, 3 insertions, 3 deletions
diff --git a/compile b/compile
index ec64c62..c0096a7 100755
--- a/compile
+++ b/compile
@@ -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"