# HG changeset patch # User Rob Landley # Date 1404012962 18000 # Node ID e2b84f715e938df8a7c1641d99ca65dc1b5c5133 # Parent 5ec6582aac50968c6af418161a7cb8ff807e2572 Add : as an alias for true (toysh needs this). diff -r 5ec6582aac50 -r e2b84f715e93 toys/posix/true.c --- a/toys/posix/true.c Sat Jun 28 22:17:00 2014 -0500 +++ b/toys/posix/true.c Sat Jun 28 22:36:02 2014 -0500 @@ -5,6 +5,7 @@ * See http://opengroup.org/onlinepubs/9699919799/utilities/true.html USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN)) +USE_TRUE(OLDTOY(:, true, 0, TOYFLAG_NOFORK)) config TRUE bool "true"