diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-06-05 07:36:24 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-06-05 07:36:24 +0000 |
commit | a2f7c79d0a135d45e2d0572d29b4ccbc96a13f15 (patch) | |
tree | 78b80849f11be23e1d75193c13354921dca4c073 /sbin/fsdb | |
parent | 7c13fd24dc96ef7c6e39c867ba601a1d9b1cb3cf (diff) |
Switch fsck_ffs(8) and fsdb(8) to opendev(3) so that they will soon be able
to operate with disklabel UIDs.
ok marco@ krw@ otto@
Diffstat (limited to 'sbin/fsdb')
-rw-r--r-- | sbin/fsdb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsdb/Makefile b/sbin/fsdb/Makefile index 49c840190de..25b67164619 100644 --- a/sbin/fsdb/Makefile +++ b/sbin/fsdb/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2002/05/11 00:20:20 espie Exp $ +# $OpenBSD: Makefile,v 1.8 2010/06/05 07:36:23 jsing Exp $ PROG= fsdb MAN= fsdb.8 @@ -6,8 +6,8 @@ SRCS= fsdb.c fsdbutil.c fsutil.c \ dir.c inode.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ pass5.c preen.c setup.c utilities.c ffs_subr.c ffs_tables.c CFLAGS+= -I${.CURDIR}/../../sbin/fsck -I${.CURDIR}/../../sbin/fsck_ffs -LDADD+= -ledit -lcurses -DPADD+= ${LIBEDIT} ${LIBCURSES} +LDADD+= -ledit -lcurses -lutil +DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} .PATH: ${.CURDIR}/../../sbin/fsck ${.CURDIR}/../../sbin/fsck_ffs ${.CURDIR}/../../sys/ufs/ffs .include <bsd.prog.mk> |