Changeset dda0b13 in clfs-embedded for BOOK


Ignore:
Timestamp:
Oct 17, 2013, 1:11:25 PM (11 years ago)
Author:
Andrew Bradford <andrew@…>
Branches:
master
Children:
82c2b54
Parents:
7754837
Message:

dropbear: Don't install man pages

Also build scp, as now it can install properly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/beyond-net/common/dropbear.xml

    r7754837 rdda0b13  
    2828    <title>Installation of Dropbear</title>
    2929
     30    <para>Fix dropbear so it doesn't install man pages:</para>
     31
     32    <screen><userinput>sed -i 's/.*mandir.*//g' Makefile.in</userinput></screen>
     33
    3034    <para os="a">Configure dropbear:</para>
    3135
    3236<screen os="b"><userinput>CC="${CC} -Os" ./configure --prefix=/usr --host=${CLFS_TARGET}</userinput></screen>
    3337
    34     <note os="e">
    35       <para>We are just telling dropbear to use the default configuration.
    36       For those for more adventureous, edit options.h to further configure dropbear.</para>
    37     </note>
     38    <note os="e"><para>We are just telling dropbear to use the default
     39        configuration plus scp.  For those for more adventureous, edit options.h
     40        to further configure dropbear.</para></note>
    3841
    3942    <para os="f">Compile the package:</para>
    4043
    41 <screen os="g"><userinput>make MULTI=1</userinput></screen>
     44<screen os="g"><userinput>make MULTI=1 \
     45  PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp"</userinput></screen>
    4246
    4347    <para os="h">Install the package:</para>
    4448
    45 <screen os="i"><userinput>make MULTI=1 install DESTDIR=${CLFS}/targetfs</userinput></screen>
     49<screen os="i"><userinput>make MULTI=1 \
     50  PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" \
     51  install DESTDIR=${CLFS}/targetfs</userinput></screen>
    4652
    4753    <para os="j">Create the directory for the dropbear key files:</para>
Note: See TracChangeset for help on using the changeset viewer.