diff options
author | Elliott Hughes <enh@google.com> | 2019-10-02 18:46:36 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-10-04 16:16:57 -0500 |
commit | 86c25f5335bd664a4f6dc7255c7556df707fe086 (patch) | |
tree | 10746b4a366d46025e4f1d79215d61ed5e7415f8 /toys | |
parent | 09c7c9ee1020ebb915c4fbaf4a55127f40ef3daa (diff) | |
download | toybox-86c25f5335bd664a4f6dc7255c7556df707fe086.tar.gz |
readlink: add missing line, plus a test.
I must have lost this line somehow when I moved the patch from my AOSP
tree to a toybox tree. (But the ln tests passed on the host because I
was using coreutils ln there :-( )
Diffstat (limited to 'toys')
-rw-r--r-- | toys/other/readlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/readlink.c b/toys/other/readlink.c index eb63d7f4..9ebf68d7 100644 --- a/toys/other/readlink.c +++ b/toys/other/readlink.c @@ -2,7 +2,7 @@ * * Copyright 2007 Rob Landley <rob@landley.net> -USE_READLINK(NEWTOY(readlink, "<1>1nqmef(canonicalize)[-mef]", TOYFLAG_USR|TOYFLAG_BIN)) +USE_READLINK(NEWTOY(readlink, "<1nqmef(canonicalize)[-mef]", TOYFLAG_USR|TOYFLAG_BIN)) config READLINK bool "readlink" |