diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-03-30 06:38:48 +0000 |
commit | 22c99bcd0d1aacbc678f4a711ffe6a55178e6c28 (patch) | |
tree | fc5a38e208ec108f56afffc16f05c640e740cc20 /lib/libc/uuid | |
parent | c18d4a3d864d24448fec6853ae70834f8dae3a40 (diff) |
for some time now mandoc has not required MLINKS to function
correctly - logically complete that now by removing MLINKS from base;
authors need only to ensure there is an entry in NAME for any function/
util being added. MLINKS will still work, and remain for perl to ease
upgrades;
ok nicm (curses) bcook (ssl)
ok schwarze, who provided a lot of feedback and assistance
ok tb natano jung
Diffstat (limited to 'lib/libc/uuid')
-rw-r--r-- | lib/libc/uuid/Makefile.inc | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/libc/uuid/Makefile.inc b/lib/libc/uuid/Makefile.inc index a66d2a833c0..98a2b00f3dc 100644 --- a/lib/libc/uuid/Makefile.inc +++ b/lib/libc/uuid/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.1 2014/08/31 09:36:39 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.2 2016/03/30 06:38:42 jmc Exp $ # $NetBSD: Makefile.inc,v 1.1 2004/09/13 21:44:54 thorpej Exp $ # DCE 1.1 compatible UUID implementation sources @@ -10,17 +10,3 @@ SRCS+= uuid_compare.c uuid_create.c uuid_create_nil.c uuid_equal.c \ uuid_to_string.c MAN+= uuid.3 - -MLINKS+=uuid.3 uuid_compare.3 -MLINKS+=uuid.3 uuid_create.3 -MLINKS+=uuid.3 uuid_create_nil.3 -MLINKS+=uuid.3 uuid_equal.3 -MLINKS+=uuid.3 uuid_from_string.3 -MLINKS+=uuid.3 uuid_hash.3 -MLINKS+=uuid.3 uuid_is_nil.3 -MLINKS+=uuid.3 uuid_to_string.3 - -MLINKS+=uuid.3 uuid_enc_le.3 -MLINKS+=uuid.3 uuid_dec_le.3 -MLINKS+=uuid.3 uuid_enc_be.3 -MLINKS+=uuid.3 uuid_dec_be.3 |