Changeset 9219099f


Ignore:
Timestamp:
05/15/2021 08:11:36 PM (3 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
abed472
Parents:
7cb4635
git-author:
Douglas R. Reno <renodr@…> (05/15/2021 08:10:11 PM)
git-committer:
Douglas R. Reno <renodr@…> (05/15/2021 08:11:36 PM)
Message:

fuse: Fix a build error with GCC-11.1 and stop moving libraries and
programs to /lib and /bin.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r7cb4635 r9219099f  
    5151        </listitem>
    5252        <listitem>
     53          <para>[renodr] - Fix building fuse-3.10.3 with GCC-11.1.0 and also
     54          stop moving libraries/binaries to /bin and /lib.</para>
     55        </listitem>
     56        <listitem>
    5357          <para>[renodr] - Stop moving /usr/bin/traceroute to /bin in the
    5458          installation instructions for traceroute.</para>
  • networking/netutils/traceroute.xml

    r7cb4635 r9219099f  
    105105
    106106<screen role='root'><userinput>make prefix=/usr install                                 &amp;&amp;
    107 ln -sv -f traceroute /bin/traceroute6                    &amp;&amp;
     107ln -sv -f traceroute /usr/bin/traceroute6                &amp;&amp;
    108108ln -sv -f traceroute.8 /usr/share/man/man8/traceroute6.8 &amp;&amp;
    109109rm -fv /usr/share/man/man1/traceroute.1</userinput></screen>
  • postlfs/filesystems/fuse3.xml

    r7cb4635 r9219099f  
    114114
    115115    <para>
     116      First, fix a build issue caused by GCC-11.1:
     117    </para>
     118
     119<screen><userinput remap="pre">sed -i '/iostream/a #include &lt;limits&gt;' example/cxxopts.hpp</userinput></screen>
     120
     121    <para>
    116122      Install <application>Fuse</application> by running the following
    117123      commands:
     
    159165<screen role="root"><userinput>ninja install                                             &amp;&amp;
    160166
    161 mv -vf   /usr/lib/libfuse3.so.3*     /lib                 &amp;&amp;
    162 ln -sfvn ../../lib/libfuse3.so.&fuse3-version; /usr/lib/libfuse3.so &amp;&amp;
    163 
    164 mv -vf /usr/bin/fusermount3  /bin         &amp;&amp;
    165 mv -vf /usr/sbin/mount.fuse3 /sbin        &amp;&amp;
    166 chmod u+s /bin/fusermount3                &amp;&amp;
     167chmod u+s /usr/bin/fusermount3                &amp;&amp;
    167168
    168169install -v -m755 -d /usr/share/doc/fuse-&fuse3-version;      &amp;&amp;
     
    181182    </para>
    182183
     184<!-- FIXME: Removed with merged-/usr changes
    183185    <para>
    184186      <command>mv ... libfuse3.so.3*; ln ... libfuse3.so</command>:
    185187      These commands install the libraries in the /lib directory.
    186188    </para>
     189-->
     190
    187191<!--
    188192    <para>
Note: See TracChangeset for help on using the changeset viewer.