From 49e50904d91d25b0e581997cc0d7adad11754318 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Sat, 28 Dec 2013 01:10:43 -0500 Subject: [PATCH] Fix bad installation path for boost Was installed in /usr/local instead of /usr. --- stage5/pkg/boost | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stage5/pkg/boost b/stage5/pkg/boost index d8efd98..b7351bb 100644 --- a/stage5/pkg/boost +++ b/stage5/pkg/boost @@ -3,7 +3,7 @@ hvbuild() { cd ${LFS_TMP}/${PACKAGE} - ./bootstrap.sh - ./bjam --prefix=/usr - ./bjam install + ./bootstrap.sh --prefix=/usr + ./b2 stage threading=multi link=shared + ./b2 install threading=multi link=shared } -- 2.20.1