diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2024-12-18 14:09:19 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2024-12-18 14:09:19 +0000 |
commit | dd1d8cf3d9e4554f3dd0116569c9673b54f242ad (patch) | |
tree | 30c8e0ee3fc25496df8105e9771cae310c049508 /distrib | |
parent | d1f4107211f62c57f1c31ab5e647cc03da880b4e (diff) |
add libutil, missed with fsck_ext2fs commit (oops, I didn't realise it was
used in ramdisks). reported/ok tb@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/fsck_ext2fs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/special/fsck_ext2fs/Makefile b/distrib/special/fsck_ext2fs/Makefile index 764e7e6a489..1b86cf9e35b 100644 --- a/distrib/special/fsck_ext2fs/Makefile +++ b/distrib/special/fsck_ext2fs/Makefile @@ -1,9 +1,11 @@ -# $OpenBSD: Makefile,v 1.3 2023/08/14 08:56:20 kn Exp $ +# $OpenBSD: Makefile,v 1.4 2024/12/18 14:09:18 sthen Exp $ PROG= fsck_ext2fs SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ pass5.c fsutil.c setup.c utilities.c ext2fs_bswap.c CFLAGS+= -I${.CURDIR}/../../../sbin/fsck -DSMALL +DPADD+= ${LIBUTIL} +LDADD+= -lutil .PATH: ${.CURDIR}/../../../sbin/fsck_ext2fs .PATH: ${.CURDIR}/../../../sbin/fsck |