diff options
author | Rob Landley <rob@landley.net> | 2015-03-12 14:27:36 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-03-12 14:27:36 -0500 |
commit | c1ab8dadd0d8d3e64c20a9e3bc74d5f985c04017 (patch) | |
tree | 6de56a1954a4e393a7ec8608da9f2c75d88429f1 /toys/posix | |
parent | be4048dd2509f2b9e968a4d03c06050d847971d3 (diff) | |
download | toybox-c1ab8dadd0d8d3e64c20a9e3bc74d5f985c04017.tar.gz |
The time command depends on floating point support.
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/posix/time.c b/toys/posix/time.c index 01da9711..70d2997e 100644 --- a/toys/posix/time.c +++ b/toys/posix/time.c @@ -9,6 +9,7 @@ USE_TIME(NEWTOY(time, "<1^p", TOYFLAG_USR|TOYFLAG_BIN)) config TIME bool "time" default y + depends on TOYBOX_FLOAT help usage: time [-p] COMMAND [ARGS...] |