diff options
author | DJ Delorie <dj@delorie.com> | 2004-11-16 01:18:39 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2004-11-16 01:18:39 +0000 |
commit | 27793994040664eb30516ade79cb0b3549314873 (patch) | |
tree | 720c4307b07ebf12367559498278bc4e76c4dd12 /compile | |
parent | f414078c670fd76e24f6d101444391ab10a7d2e4 (diff) | |
download | gdb-27793994040664eb30516ade79cb0b3549314873.tar.gz |
2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
* install-sh, compile: Import from automake.
* config.guess, config.sub: Import from savannnah.
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" |