From owner-svn-src-head@FreeBSD.ORG Fri Feb 13 16:51:36 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E844D106564A; Fri, 13 Feb 2009 16:51:36 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BBBC38FC13; Fri, 13 Feb 2009 16:51:36 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n1DGpaqC093819; Fri, 13 Feb 2009 16:51:36 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1DGpa2H093815; Fri, 13 Feb 2009 16:51:36 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200902131651.n1DGpa2H093815@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 13 Feb 2009 16:51:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188583 - in head: gnu/lib/libgcc lib/libc_r lib/libkse lib/libthr X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2009 16:51:37 -0000 Author: jkim Date: Fri Feb 13 16:51:36 2009 New Revision: 188583 URL: http://svn.freebsd.org/changeset/base/188583 Log: Honor WITHOUT_INSTALLLIB in some places. Modified: head/gnu/lib/libgcc/Makefile head/lib/libc_r/Makefile head/lib/libkse/Makefile head/lib/libthr/Makefile Modified: head/gnu/lib/libgcc/Makefile ============================================================================== --- head/gnu/lib/libgcc/Makefile Fri Feb 13 16:17:05 2009 (r188582) +++ head/gnu/lib/libgcc/Makefile Fri Feb 13 16:51:36 2009 (r188583) @@ -332,8 +332,10 @@ all: lib${LIB}_eh_p.a _libinstall: _lib-eh-install _lib-eh-install: +.if ${MK_INSTALLLIB} != "no" ${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} lib${LIB}_eh.a ${DESTDIR}${LIBDIR} +.endif .if ${MK_PROFILE} != "no" ${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} lib${LIB}_eh_p.a ${DESTDIR}${LIBDIR} Modified: head/lib/libc_r/Makefile ============================================================================== --- head/lib/libc_r/Makefile Fri Feb 13 16:17:05 2009 (r188582) +++ head/lib/libc_r/Makefile Fri Feb 13 16:51:36 2009 (r188583) @@ -33,7 +33,9 @@ PRECIOUSLIB= .include "${.CURDIR}/sys/Makefile.inc" .if ${DEFAULT_THREAD_LIB} == "libc_r" +.if ${MK_INSTALLLIB} != "no" SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a +.endif .if !defined(NO_PIC) SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so .endif Modified: head/lib/libkse/Makefile ============================================================================== --- head/lib/libkse/Makefile Fri Feb 13 16:17:05 2009 (r188582) +++ head/lib/libkse/Makefile Fri Feb 13 16:51:36 2009 (r188583) @@ -52,7 +52,9 @@ PRECIOUSLIB= .include "${.CURDIR}/thread/Makefile.inc" .if ${DEFAULT_THREAD_LIB} == "libkse" || ${MK_LIBTHR} == "no" +.if ${MK_INSTALLLIB} != "no" SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a +.endif .if !defined(NO_PIC) SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so .endif Modified: head/lib/libthr/Makefile ============================================================================== --- head/lib/libthr/Makefile Fri Feb 13 16:17:05 2009 (r188582) +++ head/lib/libthr/Makefile Fri Feb 13 16:51:36 2009 (r188583) @@ -44,7 +44,9 @@ PRECIOUSLIB= .include "${.CURDIR}/sys/Makefile.inc" .include "${.CURDIR}/thread/Makefile.inc" +.if ${MK_INSTALLLIB} != "no" SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a +.endif .if !defined(NO_PIC) SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so .endif