diff options
author | 1996-10-20 19:30:27 +0000 | |
---|---|---|
committer | 1996-10-20 19:30:27 +0000 | |
commit | 9035b811dda026ac45e35b10027ad3e00eca1ea7 (patch) | |
tree | 6dd42dfb79aacccc3bc98759ad828518b6f353a7 | |
parent | Closes PR system/34 -- fix from kstailey@dol-esa.gov (diff) | |
download | wireguard-openbsd-9035b811dda026ac45e35b10027ad3e00eca1ea7.tar.xz wireguard-openbsd-9035b811dda026ac45e35b10027ad3e00eca1ea7.zip |
Deal with recent fsck changes.
-rw-r--r-- | sbin/fsdb/Makefile | 8 | ||||
-rw-r--r-- | sbin/quotacheck/Makefile | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sbin/fsdb/Makefile b/sbin/fsdb/Makefile index 40fe48ee84e..d739e32bac2 100644 --- a/sbin/fsdb/Makefile +++ b/sbin/fsdb/Makefile @@ -1,14 +1,14 @@ -# $OpenBSD: Makefile,v 1.3 1996/06/23 14:30:45 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1996/10/20 19:30:27 millert Exp $ # $NetBSD: Makefile,v 1.3 1996/04/08 21:03:06 jtc Exp $ PROG= fsdb MAN= fsdb.8 -SRCS= fsdb.c fsdbutil.c \ +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_ffs +CFLAGS+= -I${.CURDIR}/../../sbin/fsck -I${.CURDIR}/../../sbin/fsck_ffs LDADD+= -ledit -ltermcap DPADD+= ${LIBEDIT} ${LIBTERMCAP} -.PATH: ${.CURDIR}/../../sbin/fsck_ffs ${.CURDIR}/../../sys/ufs/ffs +.PATH: ${.CURDIR}/../../sbin/fsck ${.CURDIR}/../../sbin/fsck_ffs ${.CURDIR}/../../sys/ufs/ffs .include <bsd.prog.mk> diff --git a/sbin/quotacheck/Makefile b/sbin/quotacheck/Makefile index 859f201b021..d0a1e857509 100644 --- a/sbin/quotacheck/Makefile +++ b/sbin/quotacheck/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 1996/06/23 14:32:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1996/10/20 19:30:27 millert Exp $ # $NetBSD: Makefile,v 1.6 1996/04/05 04:17:57 cgd Exp $ PROG= quotacheck -SRCS= quotacheck.c preen.c +SRCS= quotacheck.c preen.c fsutil.c MAN= quotacheck.8 -.PATH: ${.CURDIR}/../fsck_ffs +.PATH: ${.CURDIR}/../fsck .include <bsd.prog.mk> |