Changeset 134224d2


Ignore:
Timestamp:
08/08/2019 02:48:28 PM (5 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.0, 9.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:
e394bdab
Parents:
63945e0
Message:

Wrap the i686 instructions in xf86-video-intel around a case statement

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/x7driver-intel.xml

    r63945e0 r134224d2  
    123123      </para>
    124124
    125 <screen><userinput remap="pre">sed -i "s/#define force_inline inline __attribute__((always_inline))/#define force_inline inline/" src/sna/compiler.h</userinput></screen>
     125<screen><userinput remap="pre">case $(uname -m) in
     126   i?86) sed -i "s/#define force_inline inline __attribute__((always_inline))/#define force_inline inline/" src/sna/compiler.h
     127         ;;
     128esac</userinput></screen>
    126129
    127130      <para>
Note: See TracChangeset for help on using the changeset viewer.