Date: Thu, 21 Mar 2002 08:41:13 -0800 (PST) From: Peter Wemm <peter@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 8160 for review Message-ID: <200203211641.g2LGfDM72159@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8160 Change 8160 by peter@peter_thunder on 2002/03/21 08:40:56 add some more NO_GCC hooks Affected files ... ... //depot/projects/ia64/Makefile.inc1#12 edit Differences ... ==== //depot/projects/ia64/Makefile.inc1#12 (text+ko) ==== @@ -683,7 +683,9 @@ .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}) cd ${.CURDIR}/lib/csu/${MACHINE_ARCH}; ${MAKE} beforeinstall .endif +.if !defined(NO_GCC) cd ${.CURDIR}/gnu/lib/csu; ${MAKE} beforeinstall +.endif cd ${.CURDIR}/lib/libalias; ${MAKE} beforeinstall cd ${.CURDIR}/lib/libatm; ${MAKE} beforeinstall cd ${.CURDIR}/lib/libdevstat; ${MAKE} beforeinstall @@ -755,6 +757,11 @@ _csu= lib/csu/${MACHINE_ARCH} .endif +.if !defined(NO_GCC) +_gnu_csu= gnu/lib/csu +_libgcc= gnu/lib/libgcc +.endif + .if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE) _secure_lib= secure/lib .if exists(${.CURDIR}/secure/lib/libcrypto) @@ -779,7 +786,7 @@ .endif libraries: -.for _lib in ${_csu} gnu/lib/csu gnu/lib/libgcc lib/libmd lib/libcrypt \ +.for _lib in ${_csu} ${_gnu_csu} ${_libgcc} lib/libmd lib/libcrypt \ lib/libz ${_libcrypto} ${_secure_lib} ${_kerberosIV_lib} \ ${_kerberos5_lib} lib/libcom_err lib/libkvm lib/msun lib/libncurses \ lib/libopie lib/libradius lib/librpcsvc lib/libsbuf lib/libtacplus \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203211641.g2LGfDM72159>