diff options
author | bapt <bapt@FreeBSD.org> | 2012-09-20 08:50:39 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-09-20 08:50:39 +0000 |
commit | 5d109d3a5f131ec5f6f862413b3b4afce3ab8d3a (patch) | |
tree | 4354a2b6c8a74aa4e77c49cc184ba83b44bfdf36 /rescue | |
parent | 9f412b96465ea77e8275339f8b3d098cd3acc5c9 (diff) | |
download | FreeBSD-src-5d109d3a5f131ec5f6f862413b3b4afce3ab8d3a.zip FreeBSD-src-5d109d3a5f131ec5f6f862413b3b4afce3ab8d3a.tar.gz |
unbreak build: rescue now needs -ljail if MK_ZFS is on
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index dc1f8a1..8d1ad0f 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -123,7 +123,7 @@ CRUNCH_LIBS+= -lalias -lcam -lcurses -ldevstat -lipsec CRUNCH_LIBS+= -lipx .endif .if ${MK_ZFS} != "no" -CRUNCH_LIBS+= -lavl -lzfs -lnvpair -lpthread -luutil -lumem +CRUNCH_LIBS+= -lavl -ljail -lzfs -lnvpair -lpthread -luutil -lumem .endif CRUNCH_LIBS+= -lgeom -lbsdxml -lkiconv -lmd -lsbuf -lufs -lz |