mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 23:07:23 +08:00
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
This commit is contained in:
parent
ccc04dcefd
commit
ec5db802af
@ -45,7 +45,9 @@
|
|||||||
<para>September 13th, 2005</para>
|
<para>September 13th, 2005</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[randy] - Updated to GStreamer-0.8.11.</para>
|
<para>[randy] - Updated to GStreamer-0.8.11 and adjusted the
|
||||||
|
documentation files chown command to only run if the docs were
|
||||||
|
built and installed.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -95,7 +95,10 @@ make</userinput></screen>
|
|||||||
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
||||||
|
|
||||||
<screen role="root"><userinput>make install &&
|
<screen role="root"><userinput>make install &&
|
||||||
chown -v -R root:root /usr/share/doc/gstreamer-&gstreamer-version;/*/html &&
|
if [ -d /usr/share/doc/gstreamer-&gstreamer-version;/faq/html ]; then
|
||||||
|
chown -v -R root:root \
|
||||||
|
/usr/share/doc/gstreamer-&gstreamer-version;/*/html
|
||||||
|
fi &&
|
||||||
gst-register</userinput></screen>
|
gst-register</userinput></screen>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
@ -116,7 +119,8 @@ gst-register</userinput></screen>
|
|||||||
<para><command>chown -v -R root:root ...</command>: The documentation is
|
<para><command>chown -v -R root:root ...</command>: The documentation is
|
||||||
installed with ownerships of the user who untarred and built the package.
|
installed with ownerships of the user who untarred and built the package.
|
||||||
This command changes the ownerships of the installed documentation files to
|
This command changes the ownerships of the installed documentation files to
|
||||||
root:root.</para>
|
root:root and is only executed if the documentation files were built and
|
||||||
|
installed.</para>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user