Changeset df9bfaa for general


Ignore:
Timestamp:
04/04/2017 04:38:10 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, 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:
ce242f2
Parents:
db15ca1
Message:

Fix installation of mozjs-38 headers.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/js38.xml

    rdb15ca1 rdf9bfaa  
    145145    </para>
    146146
    147 <screen role="root"><userinput>make install</userinput></screen>
     147<screen role="root"><userinput>make install &amp;&amp;
     148pushd /usr/include/mozjs-38 &amp;&amp;
     149for link in `find . -type l`; do
     150    header=`readlink $link`
     151    rm -f $link
     152    cp -pv $header $link
     153    chmod 644 $link
     154done &amp;&amp;
     155popd</userinput></screen>
     156
    148157  </sect2>
    149158
     
    174183    </para>
    175184
     185    <para>
     186      <command>for link in</command>...: This command replaces links to the
     187      build directory, with files copied from the build directory.
     188    </para>
    176189  </sect2>
    177190
Note: See TracChangeset for help on using the changeset viewer.