summaryrefslogtreecommitdiffstats
path: root/sbin/fsdb
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2010-06-05 07:36:23 +0000
committerjsing <jsing@openbsd.org>2010-06-05 07:36:23 +0000
commit2535dd6a50f4dff1f35647bc066313ecc7d632e3 (patch)
tree1e93ce5ffc39d11f3d6561b08205b0b05ce4a906 /sbin/fsdb
parentMove ask_list() method to $state object like it's done for confirm(), so (diff)
downloadwireguard-openbsd-2535dd6a50f4dff1f35647bc066313ecc7d632e3.tar.xz
wireguard-openbsd-2535dd6a50f4dff1f35647bc066313ecc7d632e3.zip
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/Makefile6
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>