Automatic merge of trunk into multilib

This commit is contained in:
Thomas Trepl (Moody) 2022-06-26 20:37:06 +02:00
commit dcb4788f99
6 changed files with 25 additions and 12 deletions

View File

@ -244,7 +244,7 @@
<segmentedlist id="bc-depends"> <segmentedlist id="bc-depends">
<segtitle>&dependencies;</segtitle> <segtitle>&dependencies;</segtitle>
<seglistitem> <seglistitem>
<seg>Bash, Binutils, Coreutils, GCC, Glibc, Grep, and Make</seg> <seg>Bash, Binutils, Coreutils, GCC, Glibc, Grep, Make, and Readline</seg>
</seglistitem> </seglistitem>
</segmentedlist> </segmentedlist>
@ -2615,7 +2615,7 @@
<segmentedlist id="readline-before"> <segmentedlist id="readline-before">
<segtitle>&before;</segtitle> <segtitle>&before;</segtitle>
<seglistitem> <seglistitem>
<seg>Bash and Gawk</seg> <seg>Bash, Bc, and Gawk</seg>
</seglistitem> </seglistitem>
</segmentedlist> </segmentedlist>

View File

@ -105,7 +105,7 @@ case "${1}" in
(exit ${failed}) (exit ${failed})
evaluate_retval evaluate_retval
if egrep -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then if grep -E -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then
log_info_msg "Creating files and directories... " log_info_msg "Creating files and directories... "
create_files # Always returns 0 create_files # Always returns 0
evaluate_retval evaluate_retval

View File

@ -35,7 +35,7 @@ case "${1}" in
# Exit if there's no modules file or there are no # Exit if there's no modules file or there are no
# valid entries # valid entries
[ -r /etc/sysconfig/modules ] || exit 0 [ -r /etc/sysconfig/modules ] || exit 0
egrep -qv '^($|#)' /etc/sysconfig/modules || exit 0 grep -E -qv '^($|#)' /etc/sysconfig/modules || exit 0
log_info_msg "Loading modules:" log_info_msg "Loading modules:"

View File

@ -43,7 +43,7 @@
<para>Prepare Bc for compilation:</para> <para>Prepare Bc for compilation:</para>
<screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3</userinput></screen> <screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3 -r</userinput></screen>
<variablelist> <variablelist>
<title>The meaning of the configure options:</title> <title>The meaning of the configure options:</title>
@ -55,6 +55,14 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term><parameter>-G</parameter></term>
<listitem>
<para>Omit parts of the test suite that won't work
without a GNU bc present.</para>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term><parameter>-O3</parameter></term> <term><parameter>-O3</parameter></term>
<listitem> <listitem>
@ -63,10 +71,10 @@
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><parameter>-G</parameter></term> <term><parameter>-r</parameter></term>
<listitem> <listitem>
<para>Omit parts of the test suite that won't work <para>Enable the use of <application>Readline</application> to
without a GNU bc present.</para> improve the line editing feature of bc.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
</variablelist> </variablelist>

View File

@ -77,7 +77,8 @@
<varlistentry id="egrep"> <varlistentry id="egrep">
<term><command>egrep</command></term> <term><command>egrep</command></term>
<listitem> <listitem>
<para>Prints lines matching an extended regular expression</para> <para>Prints lines matching an extended regular expression.
It is obsoleted, use <command>grep -E</command> instead</para>
<indexterm zone="ch-system-grep egrep"> <indexterm zone="ch-system-grep egrep">
<primary sortas="b-egrep">egrep</primary> <primary sortas="b-egrep">egrep</primary>
</indexterm> </indexterm>
@ -87,7 +88,8 @@
<varlistentry id="fgrep"> <varlistentry id="fgrep">
<term><command>fgrep</command></term> <term><command>fgrep</command></term>
<listitem> <listitem>
<para>Prints lines matching a list of fixed strings</para> <para>Prints lines matching a list of fixed strings.
It is obsoleted, use <command>grep -F</command> instead</para>
<indexterm zone="ch-system-grep fgrep"> <indexterm zone="ch-system-grep fgrep">
<primary sortas="b-fgrep">fgrep</primary> <primary sortas="b-fgrep">fgrep</primary>
</indexterm> </indexterm>

View File

@ -201,8 +201,11 @@ rm -rf DESTDIR</userinput></screen>
<term><command>c_rehash</command></term> <term><command>c_rehash</command></term>
<listitem> <listitem>
<para> <para>
is a <application>Perl</application> script that scans all files in is a <application>Perl</application> script that
a directory and adds symbolic links to their hash values scans all files in a directory and adds symbolic links to their
hash values. Use of <command>c_rehash</command> is considered
obsolete and should be replaced by
<command>openssl rehash</command> command
</para> </para>
<indexterm zone="ch-system-openssl c_rehash"> <indexterm zone="ch-system-openssl c_rehash">
<primary sortas="b-c_rehash">c_rehash</primary> <primary sortas="b-c_rehash">c_rehash</primary>