diff options
author | jtb <jtb@pkgsrc.org> | 2001-05-02 15:37:21 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-05-02 15:37:21 +0000 |
commit | 9fc65d84bc60e61a8f92c62787d3c2edfe42945d (patch) | |
tree | 89e3e1dfd70981b84f1b187ae2759b507662c13c /sysutils | |
parent | 4d5f65cc75c75e5581fa83fac4cdef197575ba82 (diff) | |
download | pkgsrc-9fc65d84bc60e61a8f92c62787d3c2edfe42945d.tar.gz |
Use ${CFLAGS}. Noticed by Tomasz Luchowski.
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 82d12f063d8..af3fbfef9a1 100644 --- a/sysutils/pstree/Makefile +++ b/sysutils/pstree/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/05/01 22:06:33 jtb Exp $ +# $NetBSD: Makefile,v 1.8 2001/05/02 15:37:21 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} ${CFLAGS} -o pstree pstree.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pstree ${PREFIX}/bin |