diff options
author | Elliott Hughes <enh@google.com> | 2017-04-28 15:21:36 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2017-04-30 02:09:38 -0500 |
commit | 6c74ee8d02cfab6dd8a45de56150afbd11452bee (patch) | |
tree | 21dbf1b77936983cd452d1ae6f13db13a01a9088 /toys | |
parent | de3e5ea4fe9c42f27d442aa87b7d16e090e72485 (diff) | |
download | toybox-6c74ee8d02cfab6dd8a45de56150afbd11452bee.tar.gz |
Building mkpasswd on Android makes no sense.
And won't work anyway because we don't have crypt(3).
Diffstat (limited to 'toys')
-rw-r--r-- | toys/other/mkpasswd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/other/mkpasswd.c b/toys/other/mkpasswd.c index 2e1c1a98..fe1bd26f 100644 --- a/toys/other/mkpasswd.c +++ b/toys/other/mkpasswd.c @@ -10,6 +10,7 @@ USE_MKPASSWD(NEWTOY(mkpasswd, ">2S:m:P#=0<0", TOYFLAG_USR|TOYFLAG_BIN)) config MKPASSWD bool "mkpasswd" default y + depends on !TOYBOX_ON_ANDROID help usage: mkpasswd [-P FD] [-m TYPE] [-S SALT] [PASSWORD] [SALT] |