Changeset 49f8fff


Ignore:
Timestamp:
10/26/2012 03:54:41 AM (12 years ago)
Author:
Chris Staub <chris@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b7e4d0d0
Parents:
9d8cb37
Message:

sed commands for gstreamer and plugins are no longer needed

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10787 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r9d8cb37 r49f8fff  
    100100        <listitem>
    101101          <para>[krejzi] - Xorg Nouveau Driver 1.0.3.</para>
     102        </listitem>
     103        <listitem>
     104          <para>[Chris] - Removed obsolete sed commands from gstreamer and
     105          gst-plugins-base.</para>
    102106        </listitem>
    103107      </itemizedlist>
  • multimedia/libdriv/gst-plugins-base.xml

    r9d8cb37 r49f8fff  
    137137    </para>
    138138
    139 <screen><userinput>sed -i 's/\(.*gtkdoc-rebase --relative.* \)\(;.*\)/\1|| true\2/' \
    140   docs/libs/Makefile.in &amp;&amp;
    141 ./configure --prefix=/usr &amp;&amp;
     139<screen><userinput>./configure --prefix=/usr &amp;&amp;
    142140make</userinput></screen>
    143141
     
    159157  <sect2 role="commands">
    160158    <title>Command Explanations</title>
    161 
    162     <para>
    163       <command>sed -i 's/\(.*gtkdoc-rebase --relative.* \)\(;.*\)/\1|| true\2/' \
    164       docs/libs/Makefile.in</command>: This <command>sed</command> tests if
    165       <command>gtkdoc-rebase</command> is present, and only uses it if it is,
    166       but the test <command>which gtk-doc</command> is interpreted as an error by
    167       <command>make</command> if <command>gtkdoc-rebase</command> is not present.
    168       The <command>sed</command> command ensures the command is always regarded as
    169       successful.
    170     </para>
    171159
    172160    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • multimedia/libdriv/gstreamer.xml

    r9d8cb37 r49f8fff  
    131131    </para>
    132132
    133 <screen><userinput>sed -i 's/\(.*gtkdoc-rebase --relative.* \)\(;.*\)/\1|| true\2/' \
    134   docs/{gst,libs}/Makefile.in &amp;&amp;
    135 ./configure --prefix=/usr \
     133<screen><userinput>./configure --prefix=/usr \
    136134            --libexecdir=/usr/lib \
    137135            --disable-static &amp;&amp;
     
    184182  <sect2 role="commands">
    185183    <title>Command Explanations</title>
    186 
    187     <para>
    188       <command>sed -i 's/\(.*gtkdoc-rebase --relative.* \)\(;.*\)/\1|| true\2/' \
    189       docs/{gst,libs}/Makefile.in</command>: Two of the Makefiles test if
    190       <command>gtkdoc-rebase</command> is present, and only use it if it is,
    191       but the test <command>which gtk-doc</command> is interpreted as an error by
    192       <command>make</command> if <command>gtkdoc-rebase</command> is not present.
    193       The <command>sed</command> command ensures the command is always regarded as
    194       successful.
    195     </para>
    196184
    197185    <para>
Note: See TracChangeset for help on using the changeset viewer.