- CONFIG_FEATURE_READLINK_FOLLOW readlink -f patch from Colin Watson <cjwatson@debian.org> on busybox mailing list 08/11/04

This commit is contained in:
Ned Ludd
2004-12-08 16:47:28 +00:00
parent d824853de3
commit c6fbed5dba
3 changed files with 39 additions and 4 deletions

View File

@ -1985,10 +1985,18 @@
"\t-s\tSet the system date and time (default).\n" \
"\t-p\tPrint the date and time."
#ifdef CONFIG_FEATURE_READLINK_FOLLOW
#define USAGE_READLINK_FOLLOW(a) a
#else
#define USAGE_READLINK_FOLLOW(a)
#endif
#define readlink_trivial_usage \
""
USAGE_READLINK_FOLLOW("[-f] ") "FILE"
#define readlink_full_usage \
"Displays the value of a symbolic link."
"Displays the value of a symbolic link." \
USAGE_READLINK_FOLLOW("\n\nOptions:\n" \
"\t-f\tcanonicalize by following all symlinks")
#define realpath_trivial_usage \
"pathname ..."