diff options
| author | Rob Landley <rob@landley.net> | 2020-04-28 17:50:30 -0500 |
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2020-04-28 17:50:30 -0500 |
| commit | 322eb845a960b08a1886a374e1dc403780972767 (patch) | |
| tree | 2185ec5c366a7932c3685c01e3c1cf01a9ce7a3c | |
| parent | 92dd794d8e8d49c1b4afd869e1a34f505dd3a9b4 (diff) | |
| download | toybox-322eb845a960b08a1886a374e1dc403780972767.tar.gz | |
Remove unnecessary MAYFORK.
| -rw-r--r-- | toys/posix/true.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/true.c b/toys/posix/true.c index b92d9c3a..8e56269f 100644 --- a/toys/posix/true.c +++ b/toys/posix/true.c @@ -5,7 +5,7 @@ * See http://opengroup.org/onlinepubs/9699919799/utilities/true.html USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN|TOYFLAG_NOHELP|TOYFLAG_MAYFORK)) -USE_TRUE(OLDTOY(:, true, TOYFLAG_NOFORK|TOYFLAG_NOHELP|TOYFLAG_MAYFORK)) +USE_TRUE(OLDTOY(:, true, TOYFLAG_NOFORK|TOYFLAG_NOHELP)) config TRUE bool "true" |
