diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-12-20 16:13:47 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-12-20 16:13:47 +0000 |
commit | 61c79b122e44f58607ac5f393bcf9b4a7a821178 (patch) | |
tree | ed04b5fbbf6e1897e6a52c236a7e251ae7ef66c5 /bin/rm/Makefile | |
parent | fb59e40253fef0113a40fb946389c81e296d4068 (diff) | |
download | FreeBSD-src-61c79b122e44f58607ac5f393bcf9b4a7a821178.zip FreeBSD-src-61c79b122e44f58607ac5f393bcf9b4a7a821178.tar.gz |
Add link(1) and unlink(1) as special cases of ln(1) and rm(1)
respectively, in accordance with SUSv2.
This differs from the approach taken in NetBSD, but provides
less obscure error messages in at least the EISDIR case and
does not take up additional disk space for new binaries.
PR: 13071
PR: 13074
Requested by: James Howard <howardjp@wam.umd.edu>
Diffstat (limited to 'bin/rm/Makefile')
-rw-r--r-- | bin/rm/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/rm/Makefile b/bin/rm/Makefile index 45a5f23..dcdae17 100644 --- a/bin/rm/Makefile +++ b/bin/rm/Makefile @@ -4,6 +4,9 @@ PROG= rm SRCS= rm.c stat_flags.c +LINKS= ${BINDIR}/rm ${BINDIR}/unlink +MLINKS= rm.1 unlink.1 + .PATH: ${.CURDIR}/../ls .include <bsd.prog.mk> |