From 58bd3973e36118bd6da705353fca9d1316a5a4e9 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Sat, 25 Aug 2001 18:32:52 +0000 Subject: [PATCH] [Bug 126] Move static library install to /usr/lib instead of /lib git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1034 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/bzip2-inst.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/chapter06/bzip2-inst.xml b/chapter06/bzip2-inst.xml index ba92ead24..4e6ca8e03 100644 --- a/chapter06/bzip2-inst.xml +++ b/chapter06/bzip2-inst.xml @@ -9,8 +9,11 @@ cp -f bzip2recover /bin && cp -f bzip2.1 /usr/share/man/man1 && cp -f bzlib.h /usr/include && -cp -af libbz2.so* libbz2.a /lib && +cp -af libbz2.so* /lib && rm -f /usr/lib/libbz2.a && +cp -f libbz2.a /usr/lib && +cd /usr/lib && +ln -sf ../../lib/libbz2.so && cd /bin && ln -sf bzip2 bunzip2 && ln -sf bzip2 bzcat &&