From e1fa787be8d0d66c9860c86dcb80fd6e096f74e0 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 26 Sep 2014 18:42:23 -0500 Subject: Separate more commands so single.sh can build them standalone. --- toys/example/skeleton.c | 1 - toys/lsb/md5sum.c | 10 +++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'toys') diff --git a/toys/example/skeleton.c b/toys/example/skeleton.c index 3e776be1..99e771aa 100644 --- a/toys/example/skeleton.c +++ b/toys/example/skeleton.c @@ -28,7 +28,6 @@ config SKELETON config SKELETON_ALIAS bool "skeleton_alias" default n - depends on SKELETON help usage: skeleton_alias [-dq] [-b NUMBER] diff --git a/toys/lsb/md5sum.c b/toys/lsb/md5sum.c index 83f7c92d..92e9221b 100644 --- a/toys/lsb/md5sum.c +++ b/toys/lsb/md5sum.c @@ -9,7 +9,7 @@ * and LSB standard command, sha1sum is just a good idea. USE_MD5SUM(NEWTOY(md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN)) -USE_MD5SUM_SHA1SUM(OLDTOY(sha1sum, md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN)) +USE_SHA1SUM(NEWTOY(sha1sum, "b", TOYFLAG_USR|TOYFLAG_BIN)) config MD5SUM bool "md5sum" @@ -23,10 +23,9 @@ config MD5SUM -b brief (hash only, no filename) -config MD5SUM_SHA1SUM +config SHA1SUM bool "sha1sum" default y - depends on MD5SUM help usage: sha1sum [FILE]... @@ -241,3 +240,8 @@ void md5sum_main(void) { loopfiles(toys.optargs, do_hash); } + +void sha1sum_main(void) +{ + md5sum_main(); +} -- cgit v1.2.3