mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 06:14:47 +00:00
Changed cd dir && make to make -C
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@382 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
07cbb0d5d2
commit
cd40edaa94
@ -69,6 +69,11 @@ the fileutils package on Glibc-2.2 based systems (such as the upcoming
|
||||
LFS-3.0 system).
|
||||
</para></listitem>
|
||||
|
||||
<listitem><para>
|
||||
Chapter 5+6: Changed from "cd dir && make" to "make -C dir"
|
||||
(gettext-static, sysvinit).
|
||||
</para></listitem>
|
||||
|
||||
<listitem><para>
|
||||
Chapter 5: Beautified the static link process for mawk.
|
||||
</para></listitem>
|
||||
|
@ -8,13 +8,10 @@ Install Gettext by running the following commands:
|
||||
<blockquote><literallayout>
|
||||
|
||||
<userinput>./configure --disable-nls &&</userinput>
|
||||
<userinput>cd lib &&</userinput>
|
||||
<userinput>make &&</userinput>
|
||||
<userinput>cd ../intl &&</userinput>
|
||||
<userinput>make &&</userinput>
|
||||
<userinput>cd ../src &&</userinput>
|
||||
<userinput>make LDFLAGS=-all-static msgfmt &&</userinput>
|
||||
<userinput>cp msgfmt $LFS/usr/bin</userinput>
|
||||
<userinput>make -C lib &&</userinput>
|
||||
<userinput>make -C intl &&</userinput>
|
||||
<userinput>make -C src LDFLAGS=-all-static msgfmt &&</userinput>
|
||||
<userinput>cp src/msgfmt $LFS/usr/bin</userinput>
|
||||
|
||||
</literallayout></blockquote>
|
||||
|
||||
|
@ -27,9 +27,8 @@ Install Sysvinit by running the following commands:
|
||||
|
||||
<blockquote><literallayout>
|
||||
|
||||
<userinput>cd src &&</userinput>
|
||||
<userinput>make &&</userinput>
|
||||
<userinput>make install</userinput>
|
||||
<userinput>make -C src &&</userinput>
|
||||
<userinput>make -C src install</userinput>
|
||||
|
||||
</literallayout></blockquote>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user