diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-05-02 20:45:34 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-05-02 20:45:34 +0000 |
commit | ca19420e0898e300e1d8a509ebfe8bf1c0fcc1a6 (patch) | |
tree | 25d3c2ade816f139a533e8cb52e2cd1406870caa | |
parent | 703d5b18d7a316135660c9947d7f781423aa0687 (diff) | |
download | FreeBSD-src-ca19420e0898e300e1d8a509ebfe8bf1c0fcc1a6.zip FreeBSD-src-ca19420e0898e300e1d8a509ebfe8bf1c0fcc1a6.tar.gz |
- Fix build WITHOUT_ZFS/WITHOUT_CDDL after r265229, bin/ps needs libjail.
MFC after: 2 weeks
X-MFC-with: r265229
-rw-r--r-- | rescue/rescue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index ea0d137..4a4cd44 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -52,7 +52,7 @@ CRUNCH_SRCDIRS+= bin CRUNCH_PROGS_bin= cat chflags chio chmod cp date dd df echo \ ed expr getfacl hostname kenv kill ln ls mkdir mv \ pkill ps pwd realpath rm rmdir setfacl sh stty sync test -CRUNCH_LIBS+= -lcrypt -ledit -lkvm -ll -ltermcap -lutil +CRUNCH_LIBS+= -lcrypt -ledit -ljail -lkvm -ll -ltermcap -lutil CRUNCH_BUILDTOOLS+= bin/sh # Additional options for specific programs @@ -120,7 +120,7 @@ CRUNCH_PROGS_sbin+= zpool CRUNCH_LIBS+= -lalias -lcam -lcurses -ldevstat -lipsec .if ${MK_ZFS} != "no" -CRUNCH_LIBS+= -lavl -ljail -lzfs_core -lzfs -lnvpair -lpthread -luutil -lumem +CRUNCH_LIBS+= -lavl -lzfs_core -lzfs -lnvpair -lpthread -luutil -lumem .endif CRUNCH_LIBS+= -lgeom -lbsdxml -lkiconv -lmd -lsbuf -lufs -lz |