diff options
author | Simon McVittie <smcv@debian.org> | 2013-06-12 14:36:54 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2013-06-12 14:36:54 +0100 |
commit | 94ef5bbaa9399cb0c3822c1c703641dee3c21f9a (patch) | |
tree | 21f9e227539edaa27e4eb7072c3d90ddc6797d69 /compile | |
parent | 35e06edd3135d63c08f31f722e54d01daf8094f1 (diff) | |
parent | 159fdbf680d2dcdd5f80568c3305e93114caddfa (diff) | |
download | dbus-94ef5bbaa9399cb0c3822c1c703641dee3c21f9a.tar.gz |
Imported Upstream version 1.6.12upstream/1.6.12
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 |