diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2011-02-28 00:12:20 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2011-02-28 00:12:20 +0000 |
commit | 398536665c473589e9721db24814ccd3e9672a3b (patch) | |
tree | efd1a96145f7d3d585d110c5150573db9c752a98 /sbin/dumpfs/Makefile | |
parent | 38e8ee5f5e0438c522c36b78fbed5df3b0b245d2 (diff) |
switch open(...) to opendev(...)
makes yet another utility honor DUID's
ok jsing@ miod@ deraadt@
Diffstat (limited to 'sbin/dumpfs/Makefile')
-rw-r--r-- | sbin/dumpfs/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/dumpfs/Makefile b/sbin/dumpfs/Makefile index 5875e80bddd..3c2c70d2d69 100644 --- a/sbin/dumpfs/Makefile +++ b/sbin/dumpfs/Makefile @@ -1,6 +1,9 @@ -# $OpenBSD: Makefile,v 1.3 1997/09/21 11:36:20 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2011/02/28 00:12:19 halex Exp $ PROG= dumpfs MAN= dumpfs.8 +LDADD= -lutil +DPADD= ${LIBUTIL} + .include <bsd.prog.mk> |