diff options
author | Rob Landley <rob@landley.net> | 2012-02-23 20:56:10 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-02-23 20:56:10 -0600 |
commit | 2f53279a8d96265f029da2062d7d754808211deb (patch) | |
tree | 66f3cdb6cbd386490d49739781d3edd58edc8a7d /toys | |
parent | 50591238eb4e70bf2bca59f536fd4f2253cb57f9 (diff) | |
download | toybox-2f53279a8d96265f029da2062d7d754808211deb.tar.gz |
Bugfix: use the right USE symbol.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/tail.c b/toys/tail.c index 08bae7b6..5ae295b8 100644 --- a/toys/tail.c +++ b/toys/tail.c @@ -6,7 +6,7 @@ * * See http://www.opengroup.org/onlinepubs/009695399/utilities/tail.html -USE_HEAD(NEWTOY(tail, "c:fn:", TOYFLAG_BIN)) +USE_TAIL(NEWTOY(tail, "c:fn:", TOYFLAG_BIN)) config TAIL bool "tail" |