Changeset ec5db802


Ignore:
Timestamp:
09/13/2005 04:32:52 AM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
f9461f8
Parents:
ccc04dc
Message:

Adjusted the chown command in the GStreamer instructions to only run if the documentation files were built and installed

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rccc04dc rec5db802  
    4646      <itemizedlist>
    4747        <listitem>
    48           <para>[randy] - Updated to GStreamer-0.8.11.</para>
     48          <para>[randy] - Updated to GStreamer-0.8.11 and adjusted the
     49          documentation files chown command to only run if the docs were
     50          built and installed.</para>
    4951        </listitem>
    5052      </itemizedlist>
  • multimedia/libdriv/gstreamer.xml

    rccc04dc rec5db802  
    9696
    9797<screen role="root"><userinput>make install &amp;&amp;
    98 chown -v -R root:root /usr/share/doc/gstreamer-&gstreamer-version;/*/html &amp;&amp;
     98if [ -d /usr/share/doc/gstreamer-&gstreamer-version;/faq/html ]; then
     99    chown -v -R root:root \
     100        /usr/share/doc/gstreamer-&gstreamer-version;/*/html
     101fi &amp;&amp;
    99102gst-register</userinput></screen>
    100103
     
    117120    installed with ownerships of the user who untarred and built the package.
    118121    This command changes the ownerships of the installed documentation files to
    119     root:root.</para>
     122    root:root and is only executed if the documentation files were built and
     123    installed.</para>
    120124
    121125  </sect2>
Note: See TracChangeset for help on using the changeset viewer.