diff options
author | kris <kris@FreeBSD.org> | 2002-01-26 08:06:02 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-01-26 08:06:02 +0000 |
commit | 03ee3567a6544f2f70736d956a1190f7e51fdab2 (patch) | |
tree | 09353e685d3e14cb33affc48b0b1f0af3c693032 /sysutils/e2fsprogs | |
parent | 4c0d97dcd1a5164a8a432e9671991d6c7adb4f03 (diff) | |
download | FreeBSD-ports-03ee3567a6544f2f70736d956a1190f7e51fdab2.zip FreeBSD-ports-03ee3567a6544f2f70736d956a1190f7e51fdab2.tar.gz |
Fix malloc.h brokenness on -current. The build still fails for
another reason.
Diffstat (limited to 'sysutils/e2fsprogs')
-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 1b2ced2..6009877 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 |