Fix bad installation path for boost
authorHugo Villeneuve <hugo@hugovil.com>
Sat, 28 Dec 2013 06:10:43 +0000 (01:10 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Sat, 28 Dec 2013 06:10:50 +0000 (01:10 -0500)
Was installed in /usr/local instead of /usr.

stage5/pkg/boost

index d8efd98..b7351bb 100644 (file)
@@ -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
 }