From c9553b06c71f10dc4a7b669ffd0ac746142486b5 Mon Sep 17 00:00:00 2001 From: zrj Date: Sun, 31 Dec 2017 09:56:17 +0200 Subject: [PATCH] lib/libc_rtld: Fix 'make install'. Do not install nls categories and uuid(3) manpages. These are handled by libc. --- lib/libc/nls/Makefile.inc | 2 +- lib/libc/uuid/Makefile.inc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/libc/nls/Makefile.inc b/lib/libc/nls/Makefile.inc index e693b3090f..8e6c21a7b2 100644 --- a/lib/libc/nls/Makefile.inc +++ b/lib/libc/nls/Makefile.inc @@ -10,7 +10,6 @@ SRCS+= msgcat.c .if ${LIB} == "c" MAN+= catclose.3 catgets.3 catopen.3 -.endif # NOTE: C.msg should not be processed here, it's used as a template # for translators. @@ -44,3 +43,4 @@ NLS+= zh_Hans_CN.GB18030 NLS+= zh_Hans_CN.GB2312 NLS+= zh_Hans_CN.UTF-8 .endif +.endif diff --git a/lib/libc/uuid/Makefile.inc b/lib/libc/uuid/Makefile.inc index 853ade3b85..7d458f1ee1 100644 --- a/lib/libc/uuid/Makefile.inc +++ b/lib/libc/uuid/Makefile.inc @@ -10,6 +10,7 @@ SRCS+= uuid_compare.c uuid_create.c uuid_create_nil.c uuid_equal.c \ uuid_stream.c uuid_to_string.c CMAPS+= ${.CURDIR}/uuid/Symbol.map +.if ${LIB} == "c" MAN+= uuid.3 MLINKS+=uuid.3 uuid_addr_lookup.3 MLINKS+=uuid.3 uuid_compare.3 @@ -26,3 +27,4 @@ MLINKS+=uuid.3 uuid_is_nil.3 MLINKS+=uuid.3 uuid_name_lookup.3 MLINKS+=uuid.3 uuid_reset_lookup.3 MLINKS+=uuid.3 uuid_to_string.3 +.endif -- 2.11.4.GIT