mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-05 22:04:48 +00:00
[Bug 140] Sed consistencies
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1020 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
0a68a6c5e7
commit
bccc28841f
@ -1,6 +1,10 @@
|
||||
<sect2>
|
||||
<title>Command explanations</title>
|
||||
|
||||
<para><userinput>cp lib/Makefile.in lib/Makefile.in.backup :</userinput> We
|
||||
run this command in order to keep a backup of the file we are about to
|
||||
change.</para>
|
||||
|
||||
<para><screen><userinput>sed 's/\(.*\)\(fopen-safer\.c \)\\/\1\2atexit.c \\/' \</userinput>
|
||||
<userinput> lib/Makefile.in > tmp &&</userinput>
|
||||
<userinput>sed 's/\(.*\)\(idcache\$U\.\$.*\)\\/\1\2atexit$U.$(OBJEXT) \\/' \</userinput>
|
||||
|
@ -7,7 +7,8 @@ limited to, Linux systems that run Glibc-2.2.3 with an AMD CPU (Athlons
|
||||
and Durons are the most reported used CPU's). If you are in this category,
|
||||
run the following to sed commands before you compile this package.
|
||||
|
||||
<screen><userinput>sed 's/\(.*\)\(fopen-safer\.c \)\\/\1\2atexit.c \\/' \</userinput>
|
||||
<screen><userinput>cp lib/Makefile.in lib/Makefile.in.backup &&</userinput>
|
||||
<userinput>sed 's/\(.*\)\(fopen-safer\.c \)\\/\1\2atexit.c \\/' \</userinput>
|
||||
<userinput> lib/Makefile.in > tmp &&</userinput>
|
||||
<userinput>sed 's/\(.*\)\(idcache\$U\.\$.*\)\\/\1\2atexit$U.$(OBJEXT) \\/' \</userinput>
|
||||
<userinput> tmp > lib/Makefile.in</userinput></screen></para>
|
||||
|
@ -3,8 +3,8 @@
|
||||
|
||||
<para>Install Ed by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>cp buf.c buf.c-temp &&</userinput>
|
||||
<userinput>sed 's/int u/int u, sfd/' buf.c-temp | \</userinput>
|
||||
<para><screen><userinput>cp buf.c buf.c.backup &&</userinput>
|
||||
<userinput>sed 's/int u/int u, sfd/' buf.c.backup | \</userinput>
|
||||
<userinput> sed '/.*\*mktemp.*/d' | \</userinput>
|
||||
<userinput> sed 's/.*if (mktemp.*/ sfd = mkstemp(sfn);\</userinput>
|
||||
<userinput> if ((sfd == -1) || (sfp = fopen (sfn, "w+")) == NULL)/' > buf.c</userinput>
|
||||
|
@ -12,7 +12,7 @@ that it can't read the file, so we simply create an empty file (the empty file
|
||||
will have Glibc default to using /lib and /usr/lib which is fine
|
||||
right now).</para>
|
||||
|
||||
<para><userinput>sed 's|$(PERL)|/usr/bin/perl|'
|
||||
<para><userinput>sed 's%\$(PERL)%/usr/bin/perl%'
|
||||
../glibc-&glibc-version;/malloc/Makefile > tmp~:</userinput> This sed command
|
||||
searches through <filename>../glibc-&glibc-version;/malloc/Makefile</filename> and
|
||||
converts all occurances of <filename>$(PERL)</filename> to
|
||||
|
@ -12,9 +12,13 @@ would do.</para>
|
||||
<userinput>touch /etc/ld.so.conf &&</userinput>
|
||||
<userinput>mkdir ../glibc-build &&</userinput>
|
||||
<userinput>cd ../glibc-build &&</userinput>
|
||||
<userinput>sed 's|$(PERL)|/usr/bin/perl|' \</userinput>
|
||||
<userinput>cp -f ../glibc-&glibc-version;/malloc/Makefile \</userinput>
|
||||
<userinput> ../glibc-&glibc-version;/malloc/Makefile.backup &&</userinput>
|
||||
<userinput>sed 's%\$(PERL)%/usr/bin/perl%' \</userinput>
|
||||
<userinput> ../glibc-&glibc-version;/malloc/Makefile > tmp~ &&</userinput>
|
||||
<userinput>mv -f tmp~ ../glibc-&glibc-version;/malloc/Makefile &&</userinput>
|
||||
<userinput>cp -f ../glibc-&glibc-version;/login/Makefile \</userinput>
|
||||
<userinput> ../glibc-&glibc-version;/login/Makefile.backup &&</userinput>
|
||||
<userinput>sed 's/root/0/' ../glibc-&glibc-version;/login/Makefile > tmp~ &&</userinput>
|
||||
<userinput>mv -f tmp~ ../glibc-&glibc-version;/login/Makefile &&</userinput>
|
||||
<userinput>../glibc-&glibc-version;/configure \</userinput>
|
||||
|
@ -4,8 +4,10 @@
|
||||
<para>Run the following commands to install man:</para>
|
||||
|
||||
<para><screen><userinput>for i in configure src/Makefile.in src/makewhatis.sh</userinput>
|
||||
<userinput>do sed s/gawk/awk/g $i > $i.fixed</userinput>
|
||||
<userinput>mv -f $i.fixed $i</userinput>
|
||||
<userinput>do</userinput>
|
||||
<userinput> cp $i $i.backup &&</userinput>
|
||||
<userinput> sed 's/gawk/awk/g' $i > tmp~ &&</userinput>
|
||||
<userinput> mv -f tmp~ $i</userinput>
|
||||
<userinput>done</userinput>
|
||||
<userinput>chmod 700 configure &&</userinput>
|
||||
<userinput>./configure -default &&</userinput>
|
||||
|
@ -11,7 +11,7 @@ were not installed during the installation of the package so we copy
|
||||
them manually as those files are used to configure authentication
|
||||
details on the system.</para>
|
||||
|
||||
<para><userinput>sed "s|/var/spool/mail|/var/mail|" login.defs.linux >
|
||||
<para><userinput>sed "s%/var/spool/mail%/var/mail%" login.defs.linux >
|
||||
/etc/login.defs</userinput>: /var/spool/mail is the old location of the
|
||||
user mailboxes. The location that is used nowadays is /var/mail.</para>
|
||||
|
||||
|
@ -4,16 +4,16 @@
|
||||
<para>Install the Shadow Password Suite by running the
|
||||
following commands:</para>
|
||||
|
||||
|
||||
<para><screen><userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' \</userinput>
|
||||
<userinput> src/useradd.c > useradd.c.temp &&</userinput>
|
||||
<userinput>mv -f useradd.c.temp src/useradd.c &&</userinput>
|
||||
<para><screen><userinput>cp src/useradd.c src/useradd.c.backup &&</userinput>
|
||||
<userinput>sed 's/\(.*\) (nflg || \(.*\))\(.*\)/\1\2\3/' \</userinput>
|
||||
<userinput> src/useradd.c > tmp~ &&</userinput>
|
||||
<userinput>mv -f tmp~ src/useradd.c &&</userinput>
|
||||
<userinput>./configure --prefix=/usr &&</userinput>
|
||||
<userinput>make &&</userinput>
|
||||
<userinput>make install &&</userinput>
|
||||
<userinput>cd etc &&</userinput>
|
||||
<userinput>cp -f limits login.access /etc &&</userinput>
|
||||
<userinput>sed "s|/var/spool/mail|/var/mail|" login.defs.linux > /etc/login.defs</userinput></screen></para>
|
||||
<userinput>sed 's%/var/spool/mail%/var/mail%' login.defs.linux > /etc/login.defs</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -12,10 +12,11 @@ processes started by init the TERM signal".</para>
|
||||
|
||||
<para>Install Sysvinit by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>sed \</userinput>
|
||||
<userinput> 's/\(.*\)\(Sending processes\)\(.*\)/\1\2 started by init\3/' \</userinput>
|
||||
<userinput> src/init.c > init.c.temp &&</userinput>
|
||||
<userinput>mv -f init.c.temp src/init.c &&</userinput>
|
||||
<para><screen><userinput>cp src/init.c src/init.c.backup &&</userinput>
|
||||
<userinput>sed \</userinput>
|
||||
<userinput> 's/\(.*\)\(Sending processes\)\(.*\)/\1\2 started by init\3/' \</userinput>
|
||||
<userinput> src/init.c > tmp~ &&</userinput>
|
||||
<userinput>mv -f tmp~ src/init.c &&</userinput>
|
||||
<userinput>make -C src &&</userinput>
|
||||
<userinput>make -C src install</userinput></screen></para>
|
||||
|
||||
|
@ -5,10 +5,11 @@
|
||||
adjtime file, instead of the usual /etc. To make hwclock, which is part of the
|
||||
util-linux package, FHS-compliant, run the following.</para>
|
||||
|
||||
<para><screen><userinput>sed 's|etc/adjtime|var/lib/hwclock/adjtime|' \</userinput>
|
||||
<userinput> hwclock/hwclock.c > hwclock~ &&</userinput>
|
||||
<userinput>mv -f hwclock~ hwclock/hwclock.c &&</userinput>
|
||||
<userinput>mkdir /var/lib/hwclock</userinput></screen></para>
|
||||
<para><screen><userinput>cp hwclock/hwclock.c hwclock/hwclock.c.backup &&</userinput>
|
||||
<userinput>sed 's%etc/adjtime%var/lib/hwclock/adjtime%' \</userinput>
|
||||
<userinput> hwclock/hwclock.c > tmp~ &&</userinput>
|
||||
<userinput>mv -f tmp~ hwclock/hwclock.c &&</userinput>
|
||||
<userinput>mkdir -p /var/lib/hwclock</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user