Changeset d6aaa67 for BOOK/prologue/common
- Timestamp:
- Nov 13, 2012, 2:22:54 AM (12 years ago)
- Branches:
- clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 532a2c4
- Parents:
- db127375
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/prologue/common/hostreqs.xml
rdb127375 rd6aaa67 40 40 41 41 <listitem> 42 <para><emphasis role="strong">Coreutils-5.0</emphasis> (or Sh-Utils-2.0, 43 Textutils-2.0, and Fileutils-4.1)</para> 42 <para><emphasis role="strong">Coreutils-5.0</emphasis></para> 44 43 </listitem> 45 44 … … 110 109 </itemizedlist> 111 110 112 <para>To see whether your host system has all the appropriate versions, run the following:</para> 111 <para>To see whether your host system has all the appropriate versions, 112 create and run the following script. Read the output carefully for any 113 errors, and make sure to install any packages that are reported as not found.</para> 113 114 114 115 <screen role="nodump"><userinput>cat > version-check.sh << "EOF" … … 136 137 tar --version | head -n1 137 138 makeinfo --version | head -n1 138 xz --version | head -n1</literal> 139 139 xz --version | head -n1 140 echo 'main(){}' | gcc -v -o /dev/null -x c - > dummy.log 2>&1 141 if grep -q ' error' dummy.log; then 142 echo "Compilation successful" && rm dummy.log 143 else 144 echo "Compilation FAILED - more development packages may need to be \ 145 installed. If you like, you can also view dummy.log for more details." 146 fi</literal> 140 147 EOF 141 148
Note:
See TracChangeset
for help on using the changeset viewer.