mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-20 14:07:39 +00:00
bccc28841f
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1020 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
18 lines
732 B
XML
18 lines
732 B
XML
<sect2>
|
|
<title>Installation of Ed</title>
|
|
|
|
<para>Install Ed by running the following commands:</para>
|
|
|
|
<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>
|
|
<userinput>./configure --prefix=/usr &&</userinput>
|
|
<userinput>make &&</userinput>
|
|
<userinput>make install &&</userinput>
|
|
<userinput>mv -f /usr/bin/ed /usr/bin/red /bin</userinput></screen></para>
|
|
|
|
</sect2>
|
|
|