summaryrefslogtreecommitdiff
path: root/compile
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2010-06-12 00:45:09 +0200
committerLinus Nordberg <linus@nordu.net>2010-06-12 00:45:09 +0200
commit55871380d853c86518b8667b08caad1121ae9e42 (patch)
treebb8f70077cb9cf937e085494b5367459b2861365 /compile
parentf805392012ce1932243bf2c33f8b745fec09f488 (diff)
Regenerate Auto* files, partly because of changes to configure.ac and
Makefile.am and partly because of newer Auto* suite.
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"