From d04dc1feb92a279e27e4487c502944f454d43837 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 30 Aug 2013 01:53:31 -0500 Subject: Add scripts/single.sh to build individual non-multiplexed standalone commands. Alas, you can't quite do this yet: make defconfig make for i in $(./toybox) do echo $i PREFIX=singles/ scripts/single.sh $i || break done Because the OLDTOY() aliases for commands won't build without the base command. And I can't just skip them because chown/chmod or mv/cp aren't the same thing. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 8218b0fd..dd985b84 100644 --- a/main.c +++ b/main.c @@ -161,7 +161,7 @@ int main(int argc, char *argv[]) { if (CFG_TOYBOX_I18N) setlocale(LC_ALL, ""); - if (!CFG_TOYBOX_SINGLE) { + if (CFG_TOYBOX) { // Trim path off of command name *argv = basename(*argv); -- cgit v1.2.3