Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Jul 2005 00:23:14 GMT
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 80723 for review
Message-ID:  <200507220023.j6M0NEN6033598@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=80723

Change 80723 by peter@peter_melody on 2005/07/22 00:23:04

	build/install gcore32 and ldd32

Affected files ...

.. //depot/projects/hammer/Makefile.inc1#98 edit
.. //depot/projects/hammer/usr.bin/gcore/Makefile#4 edit
.. //depot/projects/hammer/usr.bin/ldd/Makefile#3 edit

Differences ...

==== //depot/projects/hammer/Makefile.inc1#98 (text+ko) ====

@@ -411,6 +411,10 @@
 	    ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
 	cd ${.CURDIR}/gnu/lib; \
 	    ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
+	cd ${.CURDIR}/usr.bin/ldd; \
+	    ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
+	cd ${.CURDIR}/usr.bin/gcore; \
+	    ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
 .if !defined(NO_CRYPT)
 	cd ${.CURDIR}/secure/lib; \
 	    ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
@@ -435,6 +439,10 @@
 .for _t in obj depend all
 	cd ${.CURDIR}/libexec/rtld-elf; \
 	    PROG=ld-elf32.so.1 ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
+	cd ${.CURDIR}/usr.bin/ldd; \
+	    PROG=ldd32 ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
+	cd ${.CURDIR}/usr.bin/gcore; \
+	    PROG=gcore32 ${LIB32MAKE} DESTDIR=${LIB32TMP} ${_t}
 .endfor
 
 distribute32 install32:
@@ -449,6 +457,8 @@
 	cd ${.CURDIR}/secure/lib; ${LIB32MAKE} ${.TARGET:S/32$//}
 .endif
 	cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32MAKE} ${.TARGET:S/32$//}
+	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32MAKE} ${.TARGET:S/32$//}
+	cd ${.CURDIR}/usr.bin/gcore; PROG=gcore32 ${LIB32MAKE} ${.TARGET:S/32$//}
 .endif
 
 

==== //depot/projects/hammer/usr.bin/gcore/Makefile#4 (text+ko) ====

@@ -1,7 +1,7 @@
 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
 # $FreeBSD: src/usr.bin/gcore/Makefile,v 1.9 2004/11/27 06:46:48 das Exp $
 
-PROG=	gcore
+PROG?=	gcore
 SRCS=	elfcore.c gcore.c
 
 .include <bsd.prog.mk>

==== //depot/projects/hammer/usr.bin/ldd/Makefile#3 (text+ko) ====

@@ -1,6 +1,6 @@
 # $FreeBSD: src/usr.bin/ldd/Makefile,v 1.13 2004/06/29 21:13:15 dwmalone Exp $
 
-PROG=		ldd
+PROG?=		ldd
 SRCS=		ldd.c
 .if ${MACHINE_ARCH} == "i386"
 SRCS+=		sods.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507220023.j6M0NEN6033598>