From 8cc93ffc54a04e2bb9becbf3f7856a20056bf722 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Tue, 7 Aug 2001 18:57:11 +0000 Subject: better sed command git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@926 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/shadowpwd-exp.xml | 2 +- chapter06/shadowpwd-inst.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chapter06/shadowpwd-exp.xml b/chapter06/shadowpwd-exp.xml index 924769fff..3eb42756a 100644 --- a/chapter06/shadowpwd-exp.xml +++ b/chapter06/shadowpwd-exp.xml @@ -1,7 +1,7 @@ Command explanations -sed 's/\(.*\) (nflg || \(.*\)/\1\(\2/' useradd.c.temp +sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' useradd.c.temp > src/useradd.c: This sed is used to fix a compilation bug which occurs due to a variable being used but not defined. diff --git a/chapter06/shadowpwd-inst.xml b/chapter06/shadowpwd-inst.xml index 3a3d59644..a0921ba07 100644 --- a/chapter06/shadowpwd-inst.xml +++ b/chapter06/shadowpwd-inst.xml @@ -5,7 +5,7 @@ following commands: mv src/useradd.c useradd.c.temp && -sed 's/\(.*\) (nflg || \(.*\)/\1\(\2/' useradd.c.temp > src/useradd.c && +sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' useradd.c.temp > src/useradd.c && ./configure --prefix=/usr && make && make install && -- cgit v1.2.3-54-g00ecf