From 5c69c43f95c216ac405f385553c67694bb312d4a Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 29 Jan 2009 15:26:02 +0000 Subject: [PATCH] Attempt to satisfy intel-linux 9.0's apparent need for -lutil [SVN r50869] --- src/tools/python.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index 80aad4ff8..498a2ad89 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -654,7 +654,8 @@ local rule system-library-dependencies ( target-os ) case aix : return pthread dl ; - case * : return pthread dl gcc:util ; + case * : return pthread dl + gcc:util linux:util ; } }