diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-01-26 08:06:02 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-01-26 08:06:02 +0000 |
commit | 3473265a9deeb16495a28ec74c581161b1a32d32 (patch) | |
tree | b17e92baf83ccf7c371e4fb4a5498fc1d89a9d19 /sysutils | |
parent | Prevent OpenSSL detection, because otherwise re-entrancy issues will cause (diff) |
Fix malloc.h brokenness on -current. The build still fails for
another reason.
Notes
Notes:
svn path=/head/; revision=53769
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/e2fsprogs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/e2fsprogs/Makefile b/sysutils/e2fsprogs/Makefile index 1b2ced2d7c7e..6009877c9c47 100644 --- a/sysutils/e2fsprogs/Makefile +++ b/sysutils/e2fsprogs/Makefile @@ -28,7 +28,7 @@ MAN8= badblocks.8 debugfs.8 dumpe2fs.8 e2fsck.8 e2image.8 e2label.8 fsck.8 \ post-patch: @find ${WRKSRC} -name "*.[ch]" | xargs ${PERL} -pi -e \ 's|LIST_HEAD|LIN_LST_HEAD|g ; \ - s|et/com_err.h|com_err.h|g' + s|et/com_err.h|com_err.h|g ; s|<malloc.h>|<stdlib.h>|' post-install: ${MKDIR} ${PREFIX}/include/ext2fs |