config: more tweaks
[oweals/busybox.git] / coreutils / ln.c
index 0e2abace49ce9430432d6e60c52362ed716d3536..3fe2f3f64818ecbb06ff67ea4ea2a676b5891c0b 100644 (file)
@@ -7,10 +7,10 @@
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 //config:config LN
-//config:      bool "ln"
+//config:      bool "ln (4.9 kb)"
 //config:      default y
 //config:      help
-//config:        ln is used to create hard or soft links between files.
+//config:      ln is used to create hard or soft links between files.
 
 //applet:IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
 
@@ -62,8 +62,7 @@ int ln_main(int argc, char **argv)
        struct stat statbuf;
        int (*link_func)(const char *, const char *);
 
-       opt_complementary = "-1"; /* min one arg */
-       opts = getopt32(argv, "sfnbS:vT", &suffix);
+       opts = getopt32(argv, "^" "sfnbS:vT" "\0" "-1", &suffix);
 
        last = argv[argc - 1];
        argv += optind;