diff options
-rw-r--r-- | mk/wrapper/bsd.wrapper.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/wrapper/bsd.wrapper.mk b/mk/wrapper/bsd.wrapper.mk index 06a723c1a9b..30eb1623c79 100644 --- a/mk/wrapper/bsd.wrapper.mk +++ b/mk/wrapper/bsd.wrapper.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.wrapper.mk,v 1.88 2013/03/01 13:27:38 jperkin Exp $ +# $NetBSD: bsd.wrapper.mk,v 1.89 2014/03/06 10:15:54 uebayasi Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -138,6 +138,8 @@ IMAKE?= ${X11BASE}/bin/imake WRAPPEES+= IMAKE .endif WRAPPEES+= LD +WRAPPEES+= AR +WRAPPEES+= RANLIB .if !empty(PKGSRC_COMPILER:Mxlc) && ${OPSYS} == "AIX" CC_R?= ${_XLC_DIR}/bin/cc_r @@ -180,6 +182,8 @@ _WRAP_ALIASES.CPP= cpp _WRAP_ALIASES.FC= f77 g77 gfortran _WRAP_ALIASES.IMAKE= imake _WRAP_ALIASES.LD= ld +_WRAP_ALIASES.AR= ar +_WRAP_ALIASES.RANLIB= ranlib # _WRAP_*.<wrappee> variables represent "template methods" of the main # wrapper script. This allows individual wrappers to be customized to |