diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-07-06 19:02:39 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-07-06 19:02:39 +0000 |
commit | 80541620cfa0889c443a116c2e59eca13f2f2268 (patch) | |
tree | 77c801c2c277f632a2a37912902ee195f56db5ba | |
parent | fd824cf440c91bb2452275619210d1cb75ff864d (diff) |
Make symbolic links in inital part of Chapter 6 consistent
for all versions of the book. Allows removing environment
variables no longer needed with e2fsprogs.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11432 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 12 | ||||
-rw-r--r-- | chapter06/createfiles.xml | 14 | ||||
-rw-r--r-- | chapter06/e2fsprogs.xml | 10 | ||||
-rw-r--r-- | general.ent | 6 |
4 files changed, 31 insertions, 11 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index a5d685489..c12136b99 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -47,6 +47,18 @@ <para>2018-07-03</para> <itemizedlist> <listitem> + <para>[bdubbs] - Make symbolic links in inital part of + Chapter 6 consistent for all versions of the book. Allows + removing environment variables no longer needed with e2fsprogs. + </para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> + <para>2018-07-03</para> + <itemizedlist> + <listitem> <para>[bdubbs] - Update to attr-2.4.48. Fixes <ulink url="&lfs-ticket-root;4308">#4308</ulink>.</para> </listitem> diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml index 5a44725db..cd90477df 100644 --- a/chapter06/createfiles.xml +++ b/chapter06/createfiles.xml @@ -39,15 +39,20 @@ will be replaced by real files throughout the course of this chapter after the software has been installed:</para> +<!-- <screen revision="sysv"><userinput>ln -sv /tools/bin/{bash,cat,dd,echo,ln,pwd,rm,stty} /bin ln -sv /tools/bin/{install,perl} /usr/bin ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib ln -sv /tools/lib/libstdc++.{a,so{,.6}} /usr/lib -ln -sv bash /bin/sh</userinput></screen> +ln -sv bash /bin/sh + +</userinput></screen> +--> <!--sed 's/tools/usr/' /tools/lib/libstdc++.la > /usr/lib/libstdc++.la --> -<screen revision="systemd"><userinput>ln -sv /tools/bin/{bash,cat,dd,echo,ln,pwd,rm,stty} /bin +<!--<screen revision="systemd"><userinput>ln -sv /tools/bin/{bash,cat,dd,echo,ln,pwd,rm,stty} /bin--> +<screen><userinput>ln -sv /tools/bin/{bash,cat,dd,echo,ln,pwd,rm,stty} /bin ln -sv /tools/bin/{env,install,perl} /usr/bin ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib ln -sv /tools/lib/libstdc++.{a,so{,.6}} /usr/lib @@ -176,10 +181,11 @@ ln -sv bash /bin/sh</userinput></screen> </listitem> </varlistentry> --> - <varlistentry revision="systemd"> + <!--<varlistentry revision="systemd">--> + <varlistentry> <term><parameter><filename>/usr/lib/lib{blkid,lzma,mount,uuid}.{a,la,so*}</filename></parameter></term> <listitem> - <para>These links prevent systemd utilities from acquiring an + <para>These links prevent <!--systemd--> utilities from acquiring an unnecessary reference to the <filename class="directory">/tools</filename> directory.</para> </listitem> diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml index f95317273..7b6a07955 100644 --- a/chapter06/e2fsprogs.xml +++ b/chapter06/e2fsprogs.xml @@ -52,10 +52,12 @@ cd build</userinput></screen> <para>Prepare E2fsprogs for compilation:</para> -<screen><userinput remap="configure">LIBS=-L/tools/lib \ +<!--<screen><userinput remap="configure">LIBS=-L/tools/lib \ +CFLAGS=-I/tools/include \ CFLAGS=-I/tools/include \ PKG_CONFIG_PATH=/tools/lib/pkgconfig \ -../configure --prefix=/usr \ +../configure - -prefix=/usr \--> +<screen><userinput remap="configure">../configure --prefix=/usr \ --bindir=/bin \ --with-root-prefix="" \ --enable-elf-shlibs \ @@ -66,7 +68,7 @@ PKG_CONFIG_PATH=/tools/lib/pkgconfig \ <variablelist> <title>The meaning of the environment variable and configure options:</title> - +<!-- <varlistentry> <term><parameter>PKG_CONFIG_PATH, LIBS, CFLAGS</parameter></term> <listitem> @@ -74,7 +76,7 @@ PKG_CONFIG_PATH=/tools/lib/pkgconfig \ <xref linkend="ch-tools-util-linux"/> package built earlier.</para> </listitem> </varlistentry> - +--> <varlistentry> <term><parameter>--with-root-prefix=""</parameter> and <parameter>--bindir=/bin</parameter></term> diff --git a/general.ent b/general.ent index cfbb40e8e..459df6cf8 100644 --- a/general.ent +++ b/general.ent @@ -1,13 +1,13 @@ -<!ENTITY version "SVN-20180703"> +<!ENTITY version "SVN-20180706"> <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; Change to x.y for release but not -rc releases --> <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> -<!ENTITY versiond "20180703-systemd"> +<!ENTITY versiond "20180706-systemd"> <!ENTITY short-versiond "systemd"> <!ENTITY generic-versiond "systemd"> -<!ENTITY releasedate "July 3, 2018"> +<!ENTITY releasedate "July 6, 2018"> <!ENTITY copyrightdate "1999-2018"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "8.3"> |