~ubuntu-branches/debian/wheezy/zfsutils/wheezy

« back to all changes in this revision

Viewing changes to cddl/usr.bin/zinject/Makefile

  • Committer: Package Import Robot
  • Author(s): Robert Millan, Robert Millan
  • Date: 2012-02-04 17:16:40 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120204171640-zkmubmewnswspzku
Tags: 9.0-1
* New upstream release.

[ Robert Millan ]
* zfsutils.cron.daily: Fix to avoid listing children file systems'
  snapshots as candidates for removal.
* zfsutils.cron.daily: Remove verbose output.
* Remove X-Start-Before & X-Stop-After (no longer needed since ZVOL
  subsystem is not started by userland anymore).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
SRCS=   zinject.c translate.c
7
7
NO_MAN=
8
8
 
 
9
WARNS?= 0
9
10
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris
10
11
CFLAGS+= -I${.CURDIR}/../../compat/opensolaris/include
11
12
CFLAGS+= -I${.CURDIR}/../../compat/opensolaris/lib/libumem
19
20
CFLAGS+= -I${.CURDIR}/../../lib/libumem
20
21
 
21
22
DPADD=  ${LIBAVL} ${LIBGEOM} ${LIBM} ${LIBNVPAIR} ${LIBUMEM} ${LIBUUTIL} \
22
 
        ${LIBZFS} ${LIBZPOOL} ${LIBUUTIL}
23
 
LDADD=  -lgeom -lm -lnvpair -lumem -luutil -lzfs -lzpool -lbsd
 
23
        ${LIBZFS} ${LIBZPOOL}
 
24
LDADD=        -lgeom -lm -lnvpair -lumem -luutil -lzfs -lzpool
24
25
 
 
26
LDADD+= -lbsd
25
27
LDADD+= -L${.CURDIR}/../../../cddl/lib/libnvpair
26
28
LDADD+= -L${.CURDIR}/../../../cddl/lib/libumem
27
29
LDADD+= -L${.CURDIR}/../../../cddl/lib/libuutil
28
30
LDADD+= -L${.CURDIR}/../../../cddl/lib/libzfs
29
31
LDADD+= -L${.CURDIR}/../../../cddl/lib/libzpool
30
32
 
31
 
 
32
33
.include <bsd.prog.mk>