aboutsummaryrefslogtreecommitdiff
path: root/compile
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-08-12 13:09:42 -0500
committerTed Gould <ted@gould.cx>2010-08-12 13:09:42 -0500
commit3e58284156eb8c13a5439112225ce27cb8cd9ed9 (patch)
tree81145155110d20b9b8cb630cac108e935b0105d1 /compile
parent6495728b2209cd9a86940cc54f82f8e4dc48a411 (diff)
parentc539a45070ac3d9f3036eaec40ee34025800cddc (diff)
downloadayatana-indicator-messages-3e58284156eb8c13a5439112225ce27cb8cd9ed9.tar.gz
ayatana-indicator-messages-3e58284156eb8c13a5439112225ce27cb8cd9ed9.tar.bz2
ayatana-indicator-messages-3e58284156eb8c13a5439112225ce27cb8cd9ed9.zip
* New upstream release.
* Remove parens from counts
Diffstat (limited to 'compile')
-rwxr-xr-xcompile6
1 files changed, 3 insertions, 3 deletions
diff --git a/compile b/compile
index c0096a7..ec64c62 100755
--- a/compile
+++ b/compile
@@ -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"