From 9d11d2b6d008a287acbb701b24858b544f8fc448 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Tue, 22 Mar 2005 14:22:47 +0000 Subject: [PATCH] Protect against DESTDIR being set during the build of build32. Reported by: pav --- Makefile.inc1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 77985fca5af6..b10bbde7d6dc 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -400,7 +400,7 @@ build32: .if !defined(NO_KERBEROS) && !defined(NO_CRYPT) && !defined(NO_OPENSSL) .for _t in obj depend all cd ${.CURDIR}/kerberos5/tools; \ - MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} ${_t} + MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} DESTDIR= ${_t} .endfor .endif .for _t in obj includes @@ -425,7 +425,7 @@ build32: .endfor .for _dir in lib/libncurses lib/libmagic cd ${.CURDIR}/${_dir}; \ - MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} build-tools + MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} DESTDIR= build-tools .endfor cd ${.CURDIR}; \ ${LIB32MAKE} -f Makefile.inc1 DESTDIR=${LIB32TMP} libraries