diff options
author | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:29:30 +0100 |
---|---|---|
committer | Alessio Treglia <alessio@debian.org> | 2013-10-05 15:29:30 +0100 |
commit | e51f2bbb5a0f25b37330891d769b996a2c13d277 (patch) | |
tree | 25d429c588012a476c15b6ca5b4bf393613beca3 /compile | |
parent | 438230655b539ad6aa15b017a792cab8ca7f6d89 (diff) | |
parent | 2d71d20a62ca8f6989d86db58ce64c7a862675dd (diff) |
Merge tag 'upstream/3.10.0'
Upstream version 3.10.0
Diffstat (limited to 'compile')
-rwxr-xr-x | compile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,10 +1,9 @@ #! /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, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free -# Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey <tromey@cygnus.com>. # # This program is free software; you can redistribute it and/or modify @@ -113,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 |