Changeset a02b8ef for prologue


Ignore:
Timestamp:
01/02/2015 06:31:11 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
5706f4c
Parents:
a10a993
Message:

Update to man-pages-3.76.
Fix URL for CLFS.
Update copyright year.
Make version-check script more robust.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10811 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
prologue
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • prologue/architecture.xml

    ra10a993 ra02b8ef  
    4242LFS because it would interfere with the educational objective of providing the
    4343instructions needed for a straightforward base Linux system.  You can refer to
    44 the <ulink url="http://trac.cross-lfs.org/">Cross Linux From Scratch</ulink>
     44the <ulink url="http://trac.clfs.org/">Cross Linux From Scratch</ulink>
    4545project for this advanced topic.</para>
    4646
  • prologue/hostreqs.xml

    ra10a993 ra02b8ef  
    164164echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
    165165bison --version | head -n1
    166 if [ -e /usr/bin/yacc ];
    167   then echo "/usr/bin/yacc -&gt; `readlink -f /usr/bin/yacc`";
    168   else echo "yacc not found"; fi
     166
     167if [ -h /usr/bin/yacc ]; then
     168  echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
     169elif [ -x /usr/bin/yacc ]; then
     170  echo yacc is `/usr/bin/yacc --version | head -n1`
     171else
     172  echo "yacc not found"
     173fi
    169174
    170175bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6-
     
    173178find --version | head -n1
    174179gawk --version | head -n1
    175 if [ -e /usr/bin/awk ];
    176   then echo "/usr/bin/awk -&gt; `readlink -f /usr/bin/awk`";
    177   else echo "awk not found"; fi
     180
     181if [ -h /usr/bin/awk ]; then
     182  echo "/usr/bin/awk -&gt; `readlink -f /usr/bin/awk`";
     183elif [ -x /usr/bin/awk ]; then
     184  echo yacc is `/usr/bin/awk --version | head -n1`
     185else
     186  echo "awk not found"
     187fi
    178188
    179189gcc --version | head -n1
     
    196206  else echo "g++ compilation failed"; fi
    197207rm -f dummy.c dummy</literal>
    198 <!--
    199 for lib in lib{gmp,mpfr,mpc}.la; do
    200   echo $lib: $(if find /usr/lib* -name $lib|
    201                grep -q $lib;then :;else echo not;fi) found
    202 done
    203 unset lib</literal>-->
    204208EOF
    205209
Note: See TracChangeset for help on using the changeset viewer.