readlink: note that our -f is really -e
authorMike Frysinger <vapier@gentoo.org>
Tue, 12 Mar 2013 15:38:03 +0000 (11:38 -0400)
committerMike Frysinger <vapier@gentoo.org>
Tue, 12 Mar 2013 15:38:03 +0000 (11:38 -0400)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
coreutils/readlink.c

index f7ad791ec8de6a9d73d37470b760610ede4e76c6..d73ef4ddb568e218a2a3a1951e7ce34573f70351 100644 (file)
  *   -q, --quiet, -s, --silent     suppress most error messages
  *   -v, --verbose                 report error messages
  *
- * bbox supports: -f -n -v (fully), -q -s (accepts but ignores)
+ * bbox supports: -f (partially) -n -v (fully), -q -s (accepts but ignores)
+ * Note: we export the -f flag, but our -f behaves like coreutils' -e.
+ * Unfortunately, there isn't a C lib function we can leverage to get this
+ * behavior which means we'd have to implement the full stack ourselves :(.
  */
 
 int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;