source: BOOK/boot/multilib/shadow.xml@ 7227625

clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 7227625 was 85e1f266, checked in by William Harrington <kb0iic@…>, 12 years ago

Add passwd to the created symlinks in ch7, and remove the creation of passwd and login symlinks during Ch7 shadow.

  • Property mode set to 100644
File size: 2.4 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 <para os="b">Disable the installation of the <command>groups</command>
26 program and its man pages, as Coreutils provides a better version:</para>
27
28<screen os="c"><userinput>sed -i 's/groups$(EXEEXT) //' src/Makefile.in
29find man -name Makefile.in -exec sed -i '/groups\.1\.xml/d' '{}' \;
30find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \;</userinput></screen>
31
32 <para os="t1">The following cache entries set the values for tests that do
33 not run while cross-compiling:</para>
34
35<screen os="t2"><userinput>echo "ac_cv_func_setpgrp_void=yes" &gt; config.cache</userinput></screen>
36
37 <para os="d">Prepare Shadow for compilation:</para>
38
39<screen os="e"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \
40 --build=${CLFS_HOST} --host=${CLFS_TARGET} --sysconfdir=/etc \
41 --cache-file=config.cache</userinput></screen>
42
43<para os="f">The meaning of the configure options:</para>
44
45 <variablelist os="g">
46 <varlistentry>
47 <term><parameter>--sysconfdir=/etc</parameter></term>
48 <listitem><para>Tells Shadow to install its configuration files into
49 <filename class="directory">/etc</filename>, rather than
50 <filename class="directory">/tools/etc</filename>.</para></listitem>
51 </varlistentry>
52
53 </variablelist>
54
55
56 <para os="h">Compile the package:</para>
57
58<screen os="i"><userinput>make</userinput></screen>
59
60 <para os="j">This package does not come with a test suite.</para>
61
62 <para os="k">Install the package:</para>
63
64<screen os="l"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
65
66 </sect2>
67
68 <sect2 role="content">
69 <title/>
70
71 <para>Details on this package are located in <xref
72 linkend="contents-shadow" role="."/></para>
73 </sect2>
74
75</sect1>
Note: See TracBrowser for help on using the repository browser.