# HG changeset patch # User Rob Landley # Date 1330659380 21600 # Node ID 94a2905dd325bb037f5f61f26cf7c8826f8a0582 # Parent 12c21dc8ad04c8d4780f2f414d5cb76f2130bc85 Add -n, which kernel build needs. diff -r 12c21dc8ad04 -r 94a2905dd325 toys/ln.c --- a/toys/ln.c Tue Feb 28 06:34:35 2012 -0600 +++ b/toys/ln.c Thu Mar 01 21:36:20 2012 -0600 @@ -6,7 +6,7 @@ * * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ln.html -USE_LN(NEWTOY(ln, "<1fs", TOYFLAG_BIN)) +USE_LN(NEWTOY(ln, "<1nfs", TOYFLAG_BIN)) config LN bool "ln" @@ -14,17 +14,19 @@ help usage: ln [-sf] [FROM...] TO - Create a link between FROM and TO. - With only one argument, create link in current directory. + Create a link between FROM and TO. + With only one argument, create link in current directory. - -s Create a symbolic link - -f Force the creation of the link, even if TO already exists + -s Create a symbolic link + -f Force the creation of the link, even if TO already exists + -n Symlink at destination treated as file */ #include "toys.h" #define FLAG_s 1 -#define FLAG_f 2 +#define FLAG_f 2 +#define FLAG_n 4 void ln_main(void) { @@ -39,7 +41,9 @@ } // Is destination a directory? - if (stat(dest, &buf) || !S_ISDIR(buf.st_mode)) { + if (((toys.optflags&FLAG_n) ? lstat : stat)(dest, &buf) + || !S_ISDIR(buf.st_mode)) + { if (toys.optc>1) error_exit("'%s' not a directory"); buf.st_mode = 0; } @@ -57,7 +61,6 @@ * then we just move on */ if (toys.optflags & FLAG_f) unlink(new); - rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new); if (rc) perror_exit("cannot create %s link from '%s' to '%s'",