From: Hugo Villeneuve Date: Sat, 28 Dec 2013 06:10:43 +0000 (-0500) Subject: Fix bad installation path for boost X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=49e50904d91d25b0e581997cc0d7adad11754318;p=hvlinux.git Fix bad installation path for boost Was installed in /usr/local instead of /usr. --- 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 }