diff options
author | tron <tron@pkgsrc.org> | 2001-09-29 06:18:10 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-09-29 06:18:10 +0000 |
commit | b915dc0f2270f31576b6afcd1426348885d77831 (patch) | |
tree | 46bb2c019b5203eb4d1a2803c16ca1705564711e /sysutils/lsof | |
parent | 27cafa641cbc429960dc1a4bcc11ffec5e0a5101 (diff) | |
download | pkgsrc-b915dc0f2270f31576b6afcd1426348885d77831.tar.gz |
Use "${STRIPFLAG}" and not "${STRIP}" as argument to "install" in the
"do-install" target so that the "lsof" binary really gets stripped. Patch
supplied by Eric Gillespie Jr. in PR pkg/14092.
Diffstat (limited to 'sysutils/lsof')
-rw-r--r-- | sysutils/lsof/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile index 63eb154e929..a319cc4822e 100644 --- a/sysutils/lsof/Makefile +++ b/sysutils/lsof/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.45 2001/08/21 09:51:56 wiz Exp $ +# $NetBSD: Makefile,v 1.46 2001/09/29 06:18:10 tron Exp $ # DISTNAME= lsof_4.57_W @@ -51,7 +51,7 @@ post-extract: @( cd ${WRKSRC} ; ${ECHO} "y" | ./Inventory || exit 1 ) do-install: - ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m 2755 ${REAL_GROUP} \ + ${INSTALL} ${COPY} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m 2755 ${REAL_GROUP} \ ${WRKSRC}/lsof ${PREFIX}/sbin ${INSTALL_MAN} ${WRKSRC}/lsof.man ${PREFIX}/man/man1/lsof.1 @${INSTALL_DATA_DIR} ${PREFIX}/share/lsof |