diff options
author | Ondřej Surý <ondrej@sury.org> | 2013-07-29 17:14:20 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2013-07-29 17:14:20 +0200 |
commit | adbc92de0cd2832e84dc5d684c31d5a25bf13b5d (patch) | |
tree | df03690388d4c9acb870a9ce02e9592c827e378f /compile | |
parent | 93f582ba0ad3d1f69b796b70660ccfd1530303f1 (diff) | |
download | knot-upstream/1.3.0_rc5.tar.gz |
New upstream version 1.3.0~rc5upstream/1.3.0_rc5
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-2012 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 |