summaryrefslogtreecommitdiff
path: root/archivers/gzrecover
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2006-08-11 11:06:17 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2006-08-11 11:06:17 +0000
commitc20e0364b9822c45eabc63cf85bb3f6bd6cf7cbc (patch)
treefe6def4b1b26796107b8e76e8ace71fe44ee4687 /archivers/gzrecover
parentRespect DESTDIR (diff)
- Respect DESTDIR
- Remove an unnecessary condition PR: 101801 Submitted by: gabor
Notes
Notes: svn path=/head/; revision=170344
Diffstat (limited to 'archivers/gzrecover')
-rw-r--r--archivers/gzrecover/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/archivers/gzrecover/Makefile b/archivers/gzrecover/Makefile
index afce335235b8..c46855e28378 100644
--- a/archivers/gzrecover/Makefile
+++ b/archivers/gzrecover/Makefile
@@ -19,15 +19,13 @@ COMMENT= A gzip recovery toolkit
CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PLIST_FILES= bin/${PORTNAME}
-.if !defined(NOPORTDOCS)
PORTDOCS= README
-.endif
do-build:
${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -lz
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${TARGETDIR}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}