diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-02 05:31:01 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-02 05:31:01 +0000 |
commit | 9728842cf389c1308b69f2e3dfa2e1b1afaadb6e (patch) | |
tree | 1dc033e76ecec348fdce0dd498e7328d9ffb2ac4 /targets | |
parent | 4b9378e3ba0e2eac0dd671ad62762231a6748888 (diff) | |
download | src-9728842cf389c1308b69f2e3dfa2e1b1afaadb6e.tar.gz src-9728842cf389c1308b69f2e3dfa2e1b1afaadb6e.zip |
META MODE: Connect MK_NAND directories.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=291640
Diffstat (limited to 'targets')
-rw-r--r-- | targets/pseudo/userland/Makefile.depend | 9 | ||||
-rw-r--r-- | targets/pseudo/userland/lib/Makefile.depend | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/targets/pseudo/userland/Makefile.depend b/targets/pseudo/userland/Makefile.depend index a31f646fd886..bb00e6f61f00 100644 --- a/targets/pseudo/userland/Makefile.depend +++ b/targets/pseudo/userland/Makefile.depend @@ -800,6 +800,15 @@ DIRDEPS+= \ ${DEP_RELDIR}/secure \ ${DEP_RELDIR}/share \ +.if ${MK_NAND} != "no" +DIRDEPS+= \ + sbin/nandfs \ + sbin/newfs_nandfs \ + usr.sbin/nandsim \ + usr.sbin/nandtool \ + +.endif + DIRDEPS.amd64= \ sbin/bsdlabel \ sbin/fdisk \ diff --git a/targets/pseudo/userland/lib/Makefile.depend b/targets/pseudo/userland/lib/Makefile.depend index 2cbde23a47e9..c5e2407ddc18 100644 --- a/targets/pseudo/userland/lib/Makefile.depend +++ b/targets/pseudo/userland/lib/Makefile.depend @@ -180,4 +180,8 @@ DIRDEPS+= \ .endif +.if ${MK_NAND} != "no" +DIRDEPS+= lib/libnandfs +.endif + .include <dirdeps.mk> |