blob: 3c4486461d079a2a32b972380285b96deeff2a58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: libtool-post-cache,v 1.5 2004/05/17 10:37:57 jlam Exp $
#
# This file implements the default action of the "libtool" private
# cache.
# Skip the common cache lookup for all directories and library args that
# may reference a locally-linked libtool archive. Avoid matching the
# buildlink directory here for the WRKSRC == WRKDIR case.
#
-L${BUILDLINK_DIR}/*)
;;
-L.|-L./*|-L..*|-L[!/]*|-L${WRKSRC}*|-l*)
skipcache=yes
;;
# Skip the common cache lookup for all libtool archives that reference a
# locally-linked libtool archive.
#
./*.la|../*.la|[!-/]*.la|${WRKSRC}/*.la)
skipcache=yes
;;
esac
|