summaryrefslogtreecommitdiffstats
path: root/compile
diff options
context:
space:
mode:
authorRalf Corsépius <ralf.corsepius@rtems.org>2012-11-21 04:23:42 +0100
committerRalf Corsépius <ralf.corsepius@rtems.org>2012-11-21 04:23:42 +0100
commitd3b0fe0858bc08a81c0ec68dd60f6b68f283b897 (patch)
treef12657d13c3146cff1fb9a5d2af24f2cb865bf66 /compile
parentscore: Add RTEMS_FATAL_SOURCE_STACK_CHECKER (diff)
downloadrtems-d3b0fe0858bc08a81c0ec68dd60f6b68f283b897.tar.bz2
Update from automake-1.12.5.
Diffstat (limited to 'compile')
-rwxr-xr-xcompile7
1 files changed, 6 insertions, 1 deletions
diff --git a/compile b/compile
index 7b4a9a7e1e..718dc6d0bf 100755
--- a/compile
+++ b/compile
@@ -1,7 +1,7 @@
#! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-03-05.13; # UTC
+scriptversion=2012-10-14.11; # UTC
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
@@ -112,6 +112,11 @@ func_cl_dashl ()
lib=$dir/$lib.lib
break
fi
+ if test -f "$dir/lib$lib.a"; then
+ found=yes
+ lib=$dir/lib$lib.a
+ break
+ fi
done
IFS=$save_IFS