diff options
author | jtb <jtb> | 2001-05-01 22:06:33 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-05-01 22:06:33 +0000 |
commit | ffc9cc4896afc6c0db4d38bcff31a504067b1b23 (patch) | |
tree | 9c5e179db08f0640bac3ada240a1c952e52645b5 /sysutils | |
parent | 1549da5d74bd3a289c4738d4468c2f6482aa9acc (diff) | |
download | pkgsrc-ffc9cc4896afc6c0db4d38bcff31a504067b1b23.tar.gz |
Use ${CC} rather than cc.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pstree/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/pstree/Makefile b/sysutils/pstree/Makefile index 03644c7c8ad..82d12f063d8 100644 --- a/sysutils/pstree/Makefile +++ b/sysutils/pstree/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/02/20 19:36:30 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2001/05/01 22:06:33 jtb Exp $ # DISTNAME= pstree-2.16 @@ -13,7 +13,7 @@ CONFLICTS+= psmisc-[0-9]* WRKSRC= ${WRKDIR} do-build: - cd ${WRKSRC}; cc -o pstree pstree.c + cd ${WRKSRC}; ${CC} -o pstree pstree.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pstree ${PREFIX}/bin |