Changes in / [2de9e153:9830e45]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    r2de9e153 r9830e45  
    3131  the test suites. The fourth list of dependencies are packages that require
    3232  this package to be built and installed in its final location before they are
    33   built and installed. In most cases, this is because these packages will hard
    34   code paths to binaries within their scripts. If not built in a certain order,
    35   this could result in paths of /tools/bin/[binary] being placed inside scripts
    36   installed to the final system. This is obviously not desirable.</para>
     33  built and installed.</para>
    3734
    3835  <para>The last list of dependencies are optional packages that are not
  • chapter01/changelog.xml

    r2de9e153 r9830e45  
    4040    appropriate for the entry or if needed the entire day's listitem.
    4141    -->
     42
     43    <listitem>
     44      <para>2023-12-04</para>
     45      <itemizedlist>
     46        <listitem>
     47          <para>[thomas] - Modify commands for install Python docs to avoid
     48          too restrictive permissions on the files and dirs.</para>
     49        </listitem>
     50      </itemizedlist>
     51    </listitem>
     52
    4253    <listitem revision='sysv'>
    4354      <para>2023-12-01</para>
  • chapter08/python.xml

    r2de9e153 r9830e45  
    156156<screen><userinput remap="install">install -v -dm755 /usr/share/doc/python-&python-version;/html
    157157
    158 tar --strip-components=1  \
    159     --no-same-owner       \
    160     --no-same-permissions \
    161     -C /usr/share/doc/python-&python-version;/html \
    162     -xvf ../python-&python-version;-docs-html.tar.bz2</userinput></screen>
     158tar --no-same-owner \
     159    -xvf ../python-&python-version;-docs-html.tar.bz2
     160cp -R --no-preserve=mode python-&python-version;-docs-html/* \
     161    /usr/share/doc/python-&python-version;/html</userinput></screen>
    163162
    164163    <variablelist>
     
    166165
    167166    <varlistentry>
    168       <term><option>--no-same-owner</option> and <option>--no-same-permissions</option></term>
     167      <term><option>--no-same-owner</option> (tar) and <option>--no-preserve=mode</option> (cp)</term>
    169168      <listitem>
    170169        <para>Ensure the installed files have the correct ownership and
    171170        permissions.  Without these options, <application>tar</application>
    172         will install the package files with the upstream creator's values.
     171        will install the package files with the upstream creator's values
     172        and files would have restrictive permissions.
    173173        </para>
    174174      </listitem>
Note: See TracChangeset for help on using the changeset viewer.