diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2014-07-11 16:01:42 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2014-07-11 16:01:42 +0000 |
commit | 5a20f405f353b48380275914477659c7b2d2f871 (patch) | |
tree | e3f9ab6cfe62883435f49d665c12c79c4ac4929e /sbin/dump/Makefile | |
parent | e1e97a7aafe936ad1f3926e07355776eb3517041 (diff) |
make dump support DUIDs for command line arguments and /etc/dumpdates (using
the new shiny -U switch)
dumpdates part originating from, and discussed with, Maximilian Fillinger
seems reasonable to krw@, "get it in" deraadt@
Diffstat (limited to 'sbin/dump/Makefile')
-rw-r--r-- | sbin/dump/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/dump/Makefile b/sbin/dump/Makefile index 829b5ba39da..aeae6cadd24 100644 --- a/sbin/dump/Makefile +++ b/sbin/dump/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2013/01/06 21:59:28 martynas Exp $ +# $OpenBSD: Makefile,v 1.12 2014/07/11 16:01:41 halex Exp $ # dump.h header file # itime.c reads /etc/dumpdates @@ -14,6 +14,8 @@ PROG= dump LINKS= ${BINDIR}/dump ${BINDIR}/rdump CFLAGS+=-DRDUMP +DPADD+= ${LIBUTIL} +LDADD+= -lutil SRCS= itime.c main.c optr.c dumprmt.c tape.c traverse.c MAN= dump.8 MLINKS+=dump.8 rdump.8 |