Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v retrieving revision 1.59 retrieving revision 1.60 diff -u -p -r1.59 -r1.60 --- src/Makefile 1998/07/24 16:51:33 1.59 +++ src/Makefile 1998/07/25 10:35:53 1.60 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 1998/07/24 16:51:33 tv Exp $ +# $NetBSD: Makefile,v 1.60 1998/07/25 10:35:53 mycroft Exp $ .include # for configuration variables. @@ -56,7 +56,13 @@ build: beforeinstall (cd ${.CURDIR}/lib/csu && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) - (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && ${MAKE} depend && ${MAKE} && ${MAKE} install) +.if defined(USE_EGCS) + (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc && \ + ${MAKE} depend && ${MAKE} && ${MAKE} install) +.else + (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \ + ${MAKE} depend && ${MAKE} && ${MAKE} install) +.endif .if exists(domestic) && !defined(EXPORTABLE_SYSTEM) # libtelnet depends on libdes and libkrb. libkrb depends on # libcom_err. @@ -72,8 +78,8 @@ build: beforeinstall (cd ${.CURDIR}/domestic/lib/libkrb && \ ${MAKE} depend && ${MAKE} && ${MAKE} install) .endif - (cd ${.CURDIR}/domestic/lib/ && ${MAKE} depend && ${MAKE} && \ - ${MAKE} install) + (cd ${.CURDIR}/domestic/lib && \ + ${MAKE} depend && ${MAKE} && ${MAKE} install) .endif ${MAKE} depend && ${MAKE} && ${MAKE} install .if defined(USE_EGCS)