From 6d1c29cb9a25c0685c0c13f677cb02d55ae06f77 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Mon, 9 Jan 2017 01:27:45 +0000 Subject: Update sed instructions for most recent tarball git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11168 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/sed.xml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'chapter06') diff --git a/chapter06/sed.xml b/chapter06/sed.xml index 051884018..d1bceef2f 100644 --- a/chapter06/sed.xml +++ b/chapter06/sed.xml @@ -40,25 +40,26 @@ Installation of Sed - First fix an issue in the LFS envronment: + First fix an issue in the LFS envronment and remove a failing test: -sed -i 's/usr/tools/' build-aux/help2man +sed -i 's/usr/tools/' build-aux/help2man +sed -i 's/panic-tests.sh//' Makefile.in Prepare Sed for compilation: -./configure --prefix=/usr --bindir=/bin --htmldir=/usr/share/doc/sed-&sed-version; - +./configure --prefix=/usr --bindir=/bin + Compile the package and generate the HTML documentation: make @@ -70,7 +71,9 @@ make html Install the package and its documentation: -make install +make install +install -d -m755 /usr/share/doc/sed-&sed-version; +install -m644 doc/sed.html /usr/share/doc/sed-&sed-version; -- cgit v1.2.3-54-g00ecf