From f45b036f46916d00df29ebe738ca8c3bf350edce Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 2 Oct 2000 08:48:49 +0000 Subject: [PATCH] Change "building the standard ${LIB} library" to "building the static ${LIB} library". "standard" tends to imply the one that is normally used... but by default it is not the case - the .so would be the "standard" library. Therefore, change this to 'static'. Another option might be "conventional ${LIB} library". --- share/mk/bsd.lib.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index 149115066af..b60ead7abe0 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -178,7 +178,7 @@ all: objwarn ${_LIBS} all-man _SUBDIR # llib-l${LIB}.ln OBJS+= ${SRCS:N*.h:R:S/$/.o/g} lib${LIB}.a:: ${OBJS} ${STATICOBJS} - @${ECHO} building standard ${LIB} library + @${ECHO} building static ${LIB} library @rm -f lib${LIB}.a @${AR} cq lib${LIB}.a `lorder ${OBJS} ${STATICOBJS} | tsort -q` ${ARADD} ${RANLIB} lib${LIB}.a