Ignore:
Timestamp:
04/02/2012 12:30:56 PM (12 years ago)
Author:
Andrew Benton <andy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
31b1acd
Parents:
eb7e3a4
Message:

Added a sed to the curl page to remove the static-libs from curl-config

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • networking/netlibs/curl.xml

    reb7e3a4 r1e62b33  
    4141    other programs to support functions like streaming media.</para>
    4242
    43     &lfs70_checked;
     43    &lfs71_checked;
    4444
    4545    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    9595    commands:</para>
    9696
    97 <screen><userinput>./configure --prefix=/usr --disable-static --with-ca-path=/etc/ssl/certs &amp;&amp;
     97<screen><userinput>sed -i '/--static-libs)/{N;s#echo .*#echo #;}' curl-config.in &amp;&amp;
     98./configure --prefix=/usr --disable-static --with-ca-path=/etc/ssl/certs &amp;&amp;
    9899make</userinput></screen>
    99100
     
    118119    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    119120    href="../../xincludes/static-libraries.xml"/>
     121
     122    <para>
     123      <command>sed -i '/--static-libs)/{N;s#echo .*#echo #;}'
     124      curl-config.in</command>: As we've not installed the static libraries,
     125      this sed removes the static libs line from curl-config as it might
     126      otherwise confuse other applications<!--such as pycurl-->.
     127    </para>
    120128
    121129    <para><option>--with-ca-path=/etc/ssl/certs</option>: This option sets the
Note: See TracChangeset for help on using the changeset viewer.