Changeset fa12bca


Ignore:
Timestamp:
12/02/2016 07:41:42 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
nosym
Children:
a98af0b4
Parents:
d9f3303
Message:

Create branch without lib64 symlinks

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/nosym@18024 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
1 added
35 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/apr.xml

    rd9f3303 rfa12bca  
    8989    </para>
    9090
    91 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build/ltmain.sh &amp;&amp;
    92 
    93 ./configure --prefix=/usr    \
     91<screen><userinput>./configure --prefix=/usr    \
    9492            --disable-static \
    9593            --with-installbuilddir=/usr/share/apr-1/build &amp;&amp;
  • general/genlib/libical.xml

    rd9f3303 rfa12bca  
    130130cd build &amp;&amp;
    131131
    132 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    133       -DCMAKE_BUILD_TYPE=Release  \
    134       -DSHARED_ONLY=yes           \
     132cmake -DCMAKE_INSTALL_PREFIX=/usr      \
     133      -DCMAKE_INSTALL_LIBDIR=/usr/lib  \
     134      -DCMAKE_BUILD_TYPE=Release       \
     135      -DSHARED_ONLY=yes                \
    135136      .. &amp;&amp;
    136137make</userinput></screen>
  • general/genlib/libxml2.xml

    rd9f3303 rfa12bca  
    126126    </para>
    127127
    128 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    129 ./configure --prefix=/usr --disable-static --with-history &amp;&amp;
     128<screen><userinput>./configure --prefix=/usr --disable-static --with-history &amp;&amp;
    130129make</userinput></screen>
    131130
  • general/genlib/libxslt.xml

    rd9f3303 rfa12bca  
    114114    </para>
    115115
    116 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    117 ./configure --prefix=/usr --disable-static &amp;&amp;
     116<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    118117make</userinput></screen>
    119118
  • general/genlib/qca.xml

    rd9f3303 rfa12bca  
    102102
    103103cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR            \
     104      -DCMAKE_INSTALL_LIBDIR=lib                \
    104105      -DCMAKE_BUILD_TYPE=Release                \
    105106      -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
  • general/genutils/imagemagick.xml

    rd9f3303 rfa12bca  
    217217    </para>
    218218
    219 <screen><userinput>sed -i '/seems to be moved/ s/^/true #/' config/ltmain.sh &amp;&amp;
    220 
    221 ./configure --prefix=/usr     \
     219<screen><userinput>./configure --prefix=/usr     \
    222220            --sysconfdir=/etc \
    223221            --enable-hdri     \
  • general/graphlib/gegl.xml

    rd9f3303 rfa12bca  
    116116    <title>Installation of gegl</title>
    117117
    118     <para>If desired, prevent the ouput of numerous invalid warnings:</para>
    119 
    120 <screen><userinput>sed -i "/seems to be moved/s/^/: #/" ltmain.sh</userinput></screen>
    121 
    122118    <para>
    123119      Install <application>gegl</application> by running the following commands:
  • general/graphlib/librsvg.xml

    rd9f3303 rfa12bca  
    106106    </para>
    107107
    108 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    109 ./configure --prefix=/usr    \
     108<screen><userinput>./configure --prefix=/usr    \
    110109            --enable-vala    \
    111110            --disable-static &amp;&amp;
     
    125124  <sect2 role="commands">
    126125    <title>Command Explanations</title>
    127 
    128     <para>
    129       <command>sed -i ... ltmain.sh</command>: This sed silences several
    130       useless and annoying warnings generated by libtool.
    131     </para>
    132126
    133127    <para>
  • general/graphlib/libtiff.xml

    rd9f3303 rfa12bca  
    106106    </para>
    107107
    108 <screen><userinput>sed -i "/seems to be moved/s/^/#/" config/ltmain.sh &amp;&amp;
    109 ./configure --prefix=/usr --disable-static &amp;&amp;
     108<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    110109make</userinput></screen>
    111110
  • general/prog/gcc-ada.xml

    rd9f3303 rfa12bca  
    237237    </para>
    238238
    239 <screen><userinput>mkdir build &amp;&amp;
     239<screen><userinput>case $(uname -m) in
     240  x86_64)
     241    sed -e '/m64=/s/lib64/lib/' \
     242        -i.orig gcc/config/i386/t-linux64
     243  ;;
     244esac
     245
     246mkdir build &amp;&amp;
    240247cd    build &amp;&amp;
    241248
  • general/prog/gcc-java.xml

    rd9f3303 rfa12bca  
    156156    </para>
    157157
    158 <screen><userinput>sed -i 's/\(install.*:\) install-.*recursive/\1/' libffi/Makefile.in         &amp;&amp;
     158<screen><userinput>case $(uname -m) in
     159  x86_64)
     160    sed -e '/m64=/s/lib64/lib/' \
     161        -i.orig gcc/config/i386/t-linux64
     162  ;;
     163esac
     164
     165sed -i 's/\(install.*:\) install-.*recursive/\1/' libffi/Makefile.in         &amp;&amp;
    159166sed -i 's/\(install-data-am:\).*/\1/'             libffi/include/Makefile.in &amp;&amp;
    160167sed -i 's/absolute/file normalize/' libjava/testsuite/lib/libjava.exp &amp;&amp;
  • general/prog/gcc.xml

    rd9f3303 rfa12bca  
    169169    </para>
    170170
    171 <screen><userinput>mkdir build                                          &amp;&amp;
     171<screen><userinput>case $(uname -m) in
     172  x86_64)
     173    sed -e '/m64=/s/lib64/lib/' \
     174        -i.orig gcc/config/i386/t-linux64
     175  ;;
     176esac
     177
     178mkdir build                                          &amp;&amp;
    172179cd    build                                          &amp;&amp;
    173180
  • general/prog/guile.xml

    rd9f3303 rfa12bca  
    100100    </para>
    101101
    102 <screen><userinput>sed -i "/seems to be moved/s/^/:#/" build-aux/ltmain.sh &amp;&amp;
    103 
    104 ./configure --prefix=/usr    \
     102<screen><userinput>./configure --prefix=/usr    \
    105103            --disable-static \
    106104            --docdir=/usr/share/doc/guile-&guile-version; &amp;&amp;
     
    140138  <sect2 role="commands">
    141139    <title>Command Explanations</title>
    142 
    143     <para><command>sed -i ... build-aux/ltmain.sh</command>:
    144     This sed disables a lot invalid warnings about moved libraries generated
    145     by libtool.</para>
    146140
    147141    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • general/prog/pygobject2.xml

    rd9f3303 rfa12bca  
    107107
    108108<screen><userinput>patch -Np1 -i ../pygobject-&pygobject2-version;-fixes-1.patch   &amp;&amp;
    109 sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    110109./configure --prefix=/usr --disable-introspection &amp;&amp;
    111110make</userinput></screen>
     
    124123    <sect3 role="commands">
    125124      <title>Command Explanations</title>
    126 
    127       <para>
    128         <command>sed -i ... ltmain.sh</command>: This sed silences several
    129         useless and annoying warnings generated by libtool.
    130       </para>
    131125
    132126      <para>
  • general/prog/subversion.xml

    rd9f3303 rfa12bca  
    147147    </para>
    148148
    149 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build/ltmain.sh &amp;&amp;
    150 ./configure --prefix=/usr    \
     149<screen><userinput>./configure --prefix=/usr    \
    151150            --disable-static \
    152151            --with-apache-libexecdir &amp;&amp;
     
    241240  <sect2 role="commands">
    242241    <title>Command Explanations</title>
    243 
    244     <para>
    245       <command>sed -i ... build/ltmain.sh</command>: This sed silences several
    246       annoying and useless warnings emitted from libtool.
    247     </para>
    248242
    249243    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • general/sysutils/colord.xml

    rd9f3303 rfa12bca  
    135135    </para>
    136136
    137 <screen revision="sysv"><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    138 ./configure --prefix=/usr                \
     137<screen revision="sysv"><userinput>./configure --prefix=/usr                \
    139138            --sysconfdir=/etc            \
    140139            --localstatedir=/var         \
     
    148147make</userinput></screen>
    149148
    150 <screen revision="systemd"><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    151 ./configure --prefix=/usr                \
     149<screen revision="systemd"><userinput>./configure --prefix=/usr                \
    152150            --sysconfdir=/etc            \
    153151            --localstatedir=/var         \
     
    176174  <sect2 role="commands">
    177175    <title>Command Explanations</title>
    178 
    179     <para>
    180       <command>sed -i ... ltmain.sh</command>: This sed command silences
    181       several useless and annoying warnings generated by libtool.
    182     </para>
    183176
    184177    <para>
  • gnome/applications/evolution.xml

    rd9f3303 rfa12bca  
    128128    </para>
    129129
    130 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    131 ./configure --prefix=/usr         \
     130<screen><userinput>./configure --prefix=/usr         \
    132131            --sysconfdir=/etc     \
    133132            --disable-gtkspell    \
     
    150149  <sect2 role="commands">
    151150    <title>Command Explanations</title>
    152 
    153     <para>
    154       <command>sed -i ... ltmain.sh</command>: This command prevents the build
    155       procedure from outputting a lot of invalid warnings.
    156     </para>
    157151
    158152<!--
  • gnome/platform/rest.xml

    rd9f3303 rfa12bca  
    105105    </para>
    106106
    107 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build/ltmain.sh &amp;&amp;
    108 ./configure --prefix=/usr \
     107<screen><userinput>./configure --prefix=/usr \
    109108    --with-ca-certificates=/etc/ssl/ca-bundle.crt &amp;&amp;
    110109make</userinput></screen>
     
    125124    <title>Command Explanations</title>
    126125
    127     <para>
    128       <command>sed -i ... build/ltmain.sh</command>: This sed silences several
    129       useless and annoying warnings generated by libtool.
    130     </para>
    131    
    132126    <para>
    133127      <parameter>--with-ca-certificates=/etc/ssl/ca-bundle.crt</parameter>: This
  • kde/kf5/oxygen-fonts.xml

    rd9f3303 rfa12bca  
    9494cd    build &amp;&amp;
    9595
    96 cmake -DCMAKE_INSTALL_PREFIX=/usr ..</userinput></screen>
     96cmake -DCMAKE_INSTALL_PREFIX=/usr \
     97      -DCMAKE_INSTALL_LIBDIR=lib ..</userinput></screen>
    9798
    9899    <para>
  • kde/libdbusmenuqt.xml

    rd9f3303 rfa12bca  
    8484
    8585cmake -DCMAKE_INSTALL_PREFIX=/usr \
     86      -DCMAKE_INSTALL_LIBDIR=lib  \
    8687      -DCMAKE_BUILD_TYPE=Release  \
    8788      -DWITH_DOC=OFF              \
  • multimedia/libdriv/pulseaudio.xml

    rd9f3303 rfa12bca  
    124124  <sect2 role="installation">
    125125    <title>Installation of PulseAudio</title>
    126 
    127     <note><para>The build procedure emits a lot of invalid warnings.
    128     If desired, remove them with:</para>
    129 
    130 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build-aux/ltmain.sh</userinput></screen>
    131     </note>
    132126
    133127    <para>
  • multimedia/videoutils/vlc.xml

    rd9f3303 rfa12bca  
    226226
    227227    <para>
    228       If you wish to avoid many invalid warnings, issue:
    229     </para>
    230 
    231 <screen><userinput>sed -i '/seems to be moved/s/^/#/' autotools/ltmain.sh</userinput></screen>
    232 
    233     <para>
    234228      Install <application>VLC</application> by running the following commands:
    235229    </para>
  • networking/netlibs/libsoup.xml

    rd9f3303 rfa12bca  
    114114    </para>
    115115
    116 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build-aux/ltmain.sh &amp;&amp;
    117 ./configure --prefix=/usr --disable-static &amp;&amp;
     116<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    118117make</userinput></screen>
    119118
     
    132131  <sect2 role="commands">
    133132    <title>Command Explanations</title>
    134 
    135     <para>
    136       <command>sed -i ... build-aux/ltmain.sh</command>: This sed silences
    137       several useless and annoying warnings generated by libtool.
    138     </para>
    139133
    140134    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • postlfs/security/polkit.xml

    rd9f3303 rfa12bca  
    165165    </para>
    166166
    167 <screen revision="sysv"><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    168 ./configure --prefix=/usr                    \
     167<screen revision="sysv"><userinput>./configure --prefix=/usr                    \
    169168            --sysconfdir=/etc                \
    170169            --localstatedir=/var             \
     
    174173make</userinput></screen>
    175174
    176 <screen revision="systemd"><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    177 ./configure --prefix=/usr                    \
     175<screen revision="systemd"><userinput>./configure --prefix=/usr                    \
    178176            --sysconfdir=/etc                \
    179177            --localstatedir=/var             \
     
    199197  <sect2 role="commands">
    200198    <title>Command Explanations</title>
    201 
    202     <para>
    203       <command>sed -i ... ltmain.sh</command>: This sed silences many useless
    204       and annoying warnings from libtool.
    205     </para>
    206199
    207200    <para revision="sysv">
  • server/major/bind.xml

    rd9f3303 rfa12bca  
    253253cp /etc/localtime etc &amp;&amp;
    254254touch /srv/named/managed-keys.bind &amp;&amp;
    255 cp /usr/lib/engines/libgost.so usr/lib/engines &amp;&amp;
    256 [ $(uname -m) = x86_64 ] &amp;&amp; ln -sv lib usr/lib64</userinput></screen>
     255cp /usr/lib/engines/libgost.so usr/lib/engines</userinput></screen>
    257256
    258257      <para>The <filename>rndc.conf</filename> file contains information for
  • x/installing/libva.xml

    rd9f3303 rfa12bca  
    147147    </para>
    148148
    149 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    150 ./configure $XORG_CONFIG &amp;&amp;
     149<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
    151150make</userinput></screen>
    152151
     
    197196      wayland-scanner when configuring.  It can be omitted if
    198197      <xref linkend="wayland"/> has been built.
    199     </para>
    200 
    201     <para>
    202       <command>sed -i ... ltmain.sh</command>: This sed silences many
    203       annoying and useless warnings from libtool.
    204198    </para>
    205199
  • x/installing/mesa.xml

    rd9f3303 rfa12bca  
    182182
    183183<screen><userinput>sed -i "/pthread_stubs_possible=/s/yes/no/" configure.ac &amp;&amp;
    184 sed -i "/seems to be moved/s/^/: #/" bin/ltmain.sh       &amp;&amp;
    185 
    186184./autogen.sh CFLAGS='-O2' CXXFLAGS='-O2'    \
    187185            --prefix=$XORG_PREFIX           \
     
    241239      on the <application>libpthread-stubs</application> package which is
    242240      useless on Linux.
    243     </para>
    244 
    245     <para>
    246       <command>sed -i ... bin/ltmain.sh</command>: This sed silences several
    247       useless and annoying warnings from libtool.
    248241    </para>
    249242
  • x/installing/x7lib.xml

    rd9f3303 rfa12bca  
    259259  pushd $packagedir
    260260  case $packagedir in
    261     libX11-[0-9]* )
    262       sed -i "/seems to be moved/s/^/#/" ltmain.sh
    263       ./configure $XORG_CONFIG
    264     ;;
    265261    libXfont-[0-9]* )
    266262      ./configure $XORG_CONFIG --disable-devel-docs
     
    290286  <sect2 role="commands">
    291287    <title>Command Explanations</title>
    292 
    293     <para>
    294       <command>sed -i ... ltmain.sh</command>: This sed silences several
    295       annoying and useless warnings from libtool.
    296     </para>
    297288
    298289    <para><parameter>--disable-devel-docs</parameter>: Disable generation of
  • x/lib/at-spi2-atk.xml

    rd9f3303 rfa12bca  
    9494    </para>
    9595
    96 <screen><userinput>sed -i "/seems to be moved/s/^/#/" config/ltmain.sh &amp;&amp;
    97 ./configure --prefix=/usr &amp;&amp;
     96<screen><userinput>./configure --prefix=/usr &amp;&amp;
    9897make</userinput></screen>
    9998
     
    111110    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    112111      href="../../xincludes/gsettings-destdir.xml"/>
    113   </sect2>
    114 
    115   <sect2 role="commands">
    116     <title>Command Explanations</title>
    117    
    118     <para>
    119       <command>sed -i ... ltmain.sh</command>: This sed silences several
    120       useless and obsolete warnings generated from libtool.
    121     </para>
    122112
    123113  </sect2>
  • x/lib/freeglut.xml

    rd9f3303 rfa12bca  
    105105
    106106cmake -DCMAKE_INSTALL_PREFIX=/usr      \
     107      -DCMAKE_INSTALL_LIBDIR=/usr/lib  \
    107108      -DCMAKE_BUILD_TYPE=Release       \
    108109      -DFREEGLUT_BUILD_DEMOS=OFF       \
  • x/lib/gdk-pixbuf.xml

    rd9f3303 rfa12bca  
    118118    </para>
    119119
    120 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    121 ./configure --prefix=/usr --with-x11 &amp;&amp;
     120<screen><userinput>./configure --prefix=/usr --with-x11 &amp;&amp;
    122121make</userinput></screen>
    123122
     
    147146  <sect2 role="commands">
    148147    <title>Command Explanations</title>
    149 
    150     <para>
    151       <command>sed -i ... ltmain.sh</command>: This sed silences several
    152       useless and annoying warnings generated from libtool.
    153     </para>
    154148
    155149    <para>
  • x/lib/gtk+2.xml

    rd9f3303 rfa12bca  
    115115    -i docs/{faq,tutorial}/Makefile.in      &amp;&amp;
    116116
    117 sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    118 
    119117./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
    120118
     
    150148  <sect2 role="commands">
    151149    <title>Command Explanations</title>
    152 
    153     <para>
    154       <command>sed -i ... ltmain.sh</command>: This sed silences several
    155       useless and obsolete warnings generated from libtool.
    156     </para>
    157150
    158151    <para>
  • x/lib/gtk+3.xml

    rd9f3303 rfa12bca  
    143143    </para>
    144144
    145 <screen><userinput>sed -i "/seems to be moved/s/^/#/" build-aux/ltmain.sh &amp;&amp;
    146 
    147 ./configure --prefix=/usr             \
     145<screen><userinput>./configure --prefix=/usr             \
    148146            --sysconfdir=/etc         \
    149147            --enable-broadway-backend \
     
    195193  <sect2 role="commands">
    196194    <title>Command Explanations</title>
    197 
    198     <para>
    199       <command>sed -i ... build-aux/ltmain.sh</command>: This sed silences
    200       several useless and annoying warnings generated by libtool.
    201     </para>
    202195
    203196    <para>
  • x/lib/pango.xml

    rd9f3303 rfa12bca  
    114114    </para>
    115115
    116 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    117 ./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
     116<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
    118117make</userinput></screen>
    119118
     
    143142  <sect2 role="commands">
    144143    <title>Command Explanations</title>
    145 
    146     <para>
    147       <command>sed -i ... ltmain.sh</command>: This sed silences several
    148       useless and annoying warnings generated from libtool.
    149     </para>
    150144
    151145    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • xsoft/other/gimp.xml

    rd9f3303 rfa12bca  
    177177    </para>
    178178
    179 <screen><userinput>sed -i "/seems to be moved/s/^/#/" ltmain.sh &amp;&amp;
    180 ./configure --prefix=/usr \
     179<screen><userinput>./configure --prefix=/usr \
    181180            --sysconfdir=/etc \
    182181            --without-gvfs &amp;&amp;
     
    248247      building with the current version of gegl.
    249248    </para>
    250 
    251     <!-- we dropped this ?
    252     <para>
    253       <command>sed -i ... ltmain.sh</command>: This sed silences several
    254       useless and annoying warnings generated by libtool.
    255     </para> -->
    256249
    257250    <para>
Note: See TracChangeset for help on using the changeset viewer.