source: BOOK/boot/common/shadow.xml@ f584773

clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since f584773 was f584773, checked in by Chris Staub <chris@…>, 10 years ago

Use passwd in /tools

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-boot-shadow" role="wrap">
9 <?dbhtml filename="shadow.html"?>
10
11 <title>Shadow-&shadow-version;</title>
12
13 <indexterm zone="ch-boot-shadow">
14 <primary sortas="a-Shadow">Shadow</primary>
15 <secondary>boot</secondary>
16 </indexterm>
17
18 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
19 href="../../final-system/common/shadow.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
21
22 <sect2 role="installation">
23 <title>Installation of Shadow</title>
24
25 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
26 href="../../final-system/common/shadow.xml"
27 xpointer="xpointer(//*[@os='b'])"/>
28
29<screen os="c"><userinput>cp -v src/Makefile.in{,.orig}
30sed -e 's/groups$(EXEEXT) //' -e 's/= nologin$(EXEEXT)/= /' \
31 src/Makefile.in.orig > src/Makefile.in</userinput></screen>
32
33 <para os="d">Prepare Shadow for compilation:</para>
34
35<screen os="e"><userinput>./configure --prefix=/tools \
36 --build=${CLFS_HOST} --host=${CLFS_TARGET} --sysconfdir=/etc</userinput></screen>
37
38<para os="f">The meaning of the configure options:</para>
39
40 <variablelist os="g">
41 <varlistentry>
42 <term><parameter>--sysconfdir=/etc</parameter></term>
43 <listitem><para>Tells Shadow to install its configuration files into
44 <filename class="directory">/etc</filename>, rather than
45 <filename class="directory">/tools/etc</filename>.</para></listitem>
46 </varlistentry>
47
48 </variablelist>
49
50 <para os="h">Tell Shadow to use passwd in /tools/bin:</para>
51
52<screen os="i"><userinput>cp config.h{,.orig}
53sed '/PASSWD_PROGRAM/s@/bin/passwd@/tools&amp;@' config.h.orig &gt; config.h</userinput></screen>
54
55 <para os="j">Compile the package:</para>
56
57<screen os="k"><userinput>make</userinput></screen>
58
59 <para os="l">This package does not come with a test suite.</para>
60
61 <para os="m">Install the package:</para>
62
63<screen os="n"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
64
65 </sect2>
66
67 <sect2 role="content">
68 <title/>
69
70 <para>Details on this package are located in <xref
71 linkend="contents-shadow" role="."/></para>
72 </sect2>
73
74</sect1>
Note: See TracBrowser for help on using the repository browser.