From bf2e82440f232bd1e0bbd33f35fc4014d3a65dc5 Mon Sep 17 00:00:00 2001 From: Boris Gubenko Date: Fri, 22 Jun 2007 22:43:51 +0000 Subject: [PATCH] pthread is unnecessary on HP-UX [SVN r38066] --- v2/tools/python.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/python.jam b/v2/tools/python.jam index 3a19b604f..a7beae1ea 100644 --- a/v2/tools/python.jam +++ b/v2/tools/python.jam @@ -300,7 +300,7 @@ rule init-unix ( version ? : root ? : includes ? : libraries ? : condition * ) case HPUX : { - extra-libs = pthread rt ; + extra-libs = rt ; } case * : extra-libs = pthread dl util ;