Changeset 206b7a1


Ignore:
Timestamp:
03/26/2008 07:44:59 PM (16 years ago)
Author:
Ag Hatzimanikas <ag@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
d6e5d4f
Parents:
1ae11c9
Message:

Added a sed to Tcl/Tk instructions to fix #2487

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general/prog/tcl.xml

    r1ae11c9 r206b7a1  
    7676    commands:</para>
    7777
    78 <!-- This is removed per discussion and fairly vigorous testing
    79 sed -i -e "s:${PWD}:/usr/lib:" \
    80        -e "s:$(dirname ${PWD}):/usr/include/tcl&tcl-ver;:" \
    81        -e "/TCL_LIB_FILE/ s:':\":g" \
    82     tclConfig.sh
    83 -->
    84 
    8578<screen><userinput>cd unix &amp;&amp;
    8679./configure --prefix=/usr --enable-threads &amp;&amp;
    87 make</userinput></screen>
     80make &amp;&amp;
     81sed -i \
     82    -e "s@^\(TCL_SRC_DIR='\).*@\1/usr/include'@" \
     83    -e "/TC_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \
     84    -e "/SEARCH/s/=.*/=''/" \                   
     85    tclConfig.sh
     86</userinput></screen>
    8887
    8988    <para>To test the results, issue: <command>make test</command>.</para>
     
    122121    named <command>tclsh</command>.</para>
    123122
    124     <!-- This is removed per discussion and fairly vigorous testing
    125123    <para><command>sed -i -e ... tclConfig.sh</command>: The
    126124    <application>Tcl</application> package expects that its source tree is
     
    129127    build directory and replaces them with saner system-wide locations.</para>
    130128
     129    <!--
    131130    <para><command>install ...</command>: These commands install the internal
    132131    headers into a system-wide location.</para>
  • general/prog/tk.xml

    r1ae11c9 r206b7a1  
    7676commands:</para>
    7777
    78 <!-- This is removed per discussion and fairly vigorous testing
    79 sed -i -e "s:${PWD}:/usr/lib:" \
    80        -e "s:$(dirname ${PWD}):/usr/include/tk&tk-ver;:" \
    81     tkConfig.sh</userinput></screen>
    82 -->
    83 
    8478<screen><userinput>cd unix &amp;&amp;
    8579./configure --prefix=/usr --enable-threads &amp;&amp;
    86 make</userinput></screen>
     80make &amp;&amp;
     81sed -i \
     82    -e "s@^\(TK_SRC_DIR='\).*@\1/usr/include'@" \
     83    -e "/TK_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \
     84    -e "/SEARCH/s/=.*/=''/" \
     85    tkConfig.sh
     86</userinput></screen>
    8787
    8888    <para>Running the tests is not recommended. Some tests may crash your X
     
    125125    named <command>wish</command>.</para>
    126126
    127     <!-- This is removed per discussion and fairly vigorous testing
    128127    <para><command>sed -i -e ... tkConfig.sh</command>: The
    129128    <application>Tk</application> package expects that its source tree is
     
    132131    build directory and replaces them with saner system-wide locations.</para>
    133132
     133    <!--
    134134    <para><command>install ...</command>: These commands install the internal
    135135    headers into a system-wide location.</para>
  • introduction/welcome/changelog.xml

    r1ae11c9 r206b7a1  
    4545      <para>March 26th, 2008</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[ag] - Added a sed to Tcl/Tk instructions. Fixes #2487.</para>
     49        </listitem>
    4750        <listitem>
    4851          <para>[randy] - Updated to Stunnel-4.21.</para>
Note: See TracChangeset for help on using the changeset viewer.