Changeset 1daf906e


Ignore:
Timestamp:
02/20/2021 10:10:45 PM (3 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.1, 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:
db6b0d59
Parents:
66d551c
Message:

Fix glib instructions for jhalfs again (note that && in conditionals
do not play well with set -e)

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/glib2.xml

    r66d551c r1daf906e  
    160160      </para>
    161161
    162 <screen role="root"><userinput remap="pre">[ -e /usr/include/glib-2.0 ]     &amp;&amp;
    163 rm -rf /usr/include/glib-2.0.old &amp;&amp;
    164 mv -vf /usr/include/glib-2.0{,.old}</userinput></screen>
     162<screen role="root"><userinput remap="pre">if [ -e /usr/include/glib-2.0 ]; then
     163    rm -rf /usr/include/glib-2.0.old &amp;&amp;
     164    mv -vf /usr/include/glib-2.0{,.old}
     165fi</userinput></screen>
    165166
    166167    </warning>
Note: See TracChangeset for help on using the changeset viewer.