diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 01:04:30 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 01:04:30 +0000 |
commit | 037ff4cc9d0106aa5cb24c067bdea7729d071f14 (patch) | |
tree | ac3b24ec0c69df152f3c27cc6b0782e81e33dea3 /compile | |
parent | e294bcffa4ff7a39e07b161a52bb87010b79aa3c (diff) | |
download | gcc-037ff4cc9d0106aa5cb24c067bdea7729d071f14.tar.gz |
2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
* install-sh, compile: Import from automake.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90710 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'compile')
-rw-r--r-- | compile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand `-c -o'. -scriptversion=2004-09-10.20 +scriptversion=2004-10-12.08 # Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc. # Written by Tom Tromey <tromey@cygnus.com>. @@ -125,6 +125,8 @@ ret=$? if test -f "$cofile"; then mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" |