From 0ea9576a4d3c8cec356445aa34c765471dc136ac Mon Sep 17 00:00:00 2001 From: ru Date: Mon, 1 Oct 2007 18:22:32 +0000 Subject: Always install libpthread.* symlinks if at least one of the threading libraries is built. This simplifies the logic in makefiles that need to check if the pthreads support is present. It also fixes a bug where we would build a threading library that we shouldn't have built: for example, building with WITHOUT_LIBTHR and the default value of DEFAULT_THREADING_LIB (libthr) would mistakenly build the libthr library, but not install it. Approved by: re (kensmith) --- usr.sbin/ngctl/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'usr.sbin/ngctl') diff --git a/usr.sbin/ngctl/Makefile b/usr.sbin/ngctl/Makefile index bd93699..cf17d2e 100644 --- a/usr.sbin/ngctl/Makefile +++ b/usr.sbin/ngctl/Makefile @@ -13,8 +13,7 @@ WARNS?= 3 NGCTL_NO_LIBEDIT= .endif -.if ${MK_LIBTHR} == "no" && \ - (${MACHINE_ARCH} == "sparc64" || ${MK_LIBPTHREAD} == "no") +.if ${MK_LIBTHR} == "no" && ${MK_LIBPTHREAD} == "no" NGCTL_NO_LIBEDIT= .endif -- cgit v1.1