diff options
author | ru <ru@FreeBSD.org> | 2007-10-01 18:22:32 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-10-01 18:22:32 +0000 |
commit | 0ea9576a4d3c8cec356445aa34c765471dc136ac (patch) | |
tree | 90e7bb1d3149059a948d4992dd3241a0069cdfe0 /sbin/ggate | |
parent | 62d48a1604c31ca3959932216d8b9735207c594d (diff) | |
download | FreeBSD-src-0ea9576a4d3c8cec356445aa34c765471dc136ac.zip FreeBSD-src-0ea9576a4d3c8cec356445aa34c765471dc136ac.tar.gz |
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)
Diffstat (limited to 'sbin/ggate')
-rw-r--r-- | sbin/ggate/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/ggate/Makefile b/sbin/ggate/Makefile index 989589f..7ab5ccb 100644 --- a/sbin/ggate/Makefile +++ b/sbin/ggate/Makefile @@ -6,8 +6,7 @@ SUBDIR= ${_ggatec} \ ${_ggated} \ ggatel -.if ${MK_LIBTHR} != "no" || \ - (${MACHINE_ARCH} != "sparc64" && ${MK_LIBPTHREAD} != "no") +.if ${MK_LIBTHR} != "no" || ${MK_LIBPTHREAD} != "no" _ggatec= ggatec _ggated= ggated .endif |