diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-03-23 15:11:33 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2011-03-23 15:11:33 +0000 |
commit | ece8c9e5514d8225266dfb2cf6d8248455859fa6 (patch) | |
tree | a2a89f7cfbae7380372652cd8770e10fbcff92af /sysutils/busybox | |
parent | b0fb6d1f58fbcbc699a970e80b1ee5c8dac88fc1 (diff) |
- Respect WITH_DEBUG: do not strip the binary by default
- Use bsd.port.mk
PR: ports/155789
Submitted by: Vitaly Magerya <vmagerya@gmail.com>
Approved by: Chris Rees <utisoft@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=271523
Diffstat (limited to 'sysutils/busybox')
-rw-r--r-- | sysutils/busybox/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sysutils/busybox/Makefile b/sysutils/busybox/Makefile index 5f384c34af14..cd23a69ebe57 100644 --- a/sysutils/busybox/Makefile +++ b/sysutils/busybox/Makefile @@ -17,13 +17,12 @@ COMMENT= Busybox for FreeBSD BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed +MAKE_ARGS= SKIP_STRIP=y USE_BZIP2= yes USE_GMAKE= yes PLIST_FILES= bin/busybox -.include <bsd.port.pre.mk> - post-patch: @${REINPLACE_CMD} -e 's/sed/gsed/' ${WRKSRC}/scripts/gen_build_files.sh @${REINPLACE_CMD} -e 's/<malloc.h>/<stdlib.h>/' \ @@ -37,4 +36,4 @@ do-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.include <bsd.port.post.mk> +.include <bsd.port.mk> |