source: chapter06/mktemp.xml@ 46a2e9c

Last change on this file since 46a2e9c was 46a2e9c, checked in by Jeremy Huntwork <jhuntwork@…>, 18 years ago

Merged recent changes from trunk to lfs-alpha. Fixed typo.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7248 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[1770019]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[81fd230]6<sect1 id="ch-system-mktemp" role="wrap">
[673b0d8]7<title>Mktemp-&mktemp-version;</title>
8<?dbhtml filename="mktemp.html"?>
9
10<indexterm zone="ch-system-mktemp"><primary sortas="a-Mktemp">Mktemp</primary></indexterm>
11
[a001133]12<sect2 role="package"><title/>
[81fd230]13<para>The Mktemp package contains programs used to create secure temporary
14files in shell scripts.</para>
[673b0d8]15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
[eb6d9eb]19<seglistitem><seg>0.1 SBU</seg><seg>436 KB</seg></seglistitem>
[a001133]20</segmentedlist>
[673b0d8]21
[81fd230]22<segmentedlist>
[45992ae]23<segtitle>&dependencies;</segtitle>
[1a89152]24<seglistitem><seg>Coreutils, Make, Patch, and Zlib</seg></seglistitem>
[81fd230]25</segmentedlist>
[a001133]26</sect2>
[673b0d8]27
[a001133]28<sect2 role="installation">
[673b0d8]29<title>Installation of Mktemp</title>
30
[81fd230]31<para>Many scripts still use the deprecated
32<command>tempfile</command> program, which has functionality similar
33to <command>mktemp</command>. Patch Mktemp to include a
34<command>tempfile</command> wrapper:</para>
[673b0d8]35
[3e36a78]36<screen><userinput>patch -Np1 -i ../&mktemp-tempfile-patch;</userinput></screen>
[673b0d8]37
[81fd230]38<para>Prepare Mktemp for compilation:</para>
[673b0d8]39
40<screen><userinput>./configure --prefix=/usr --with-libc</userinput></screen>
41
[fc298480]42<para>The meaning of the configure options:</para>
[81fd230]43
44<variablelist>
45<varlistentry>
46<term><parameter>--with-libc</parameter></term>
47<listitem><para>This causes the <command>mktemp</command> program to
48use the <emphasis>mkstemp</emphasis> and <emphasis>mkdtemp</emphasis>
[46a2e9c]49functions from the system C library instead of its own implementation of them.
50</para></listitem>
[81fd230]51</varlistentry>
52</variablelist>
53
[673b0d8]54<para>Compile the package:</para>
55
56<screen><userinput>make</userinput></screen>
57
[6856842]58<para>This package does not come with a test suite.</para>
59
[81fd230]60<para>Install the package:</para>
[673b0d8]61
[ef57e3b]62<screen><userinput>make install
63make install-tempfile</userinput></screen>
[673b0d8]64
65</sect2>
66
67
[c6cb3aa]68<sect2 id="contents-mktemp" role="content"><title>Contents of Mktemp</title>
[673b0d8]69
[81fd230]70<segmentedlist>
71<segtitle>Installed programs</segtitle>
72<seglistitem><seg>mktemp and tempfile</seg></seglistitem>
73</segmentedlist>
74
75<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
76<?dbfo list-presentation="list"?>
[8f97096]77<?dbhtml list-presentation="table"?>
[81fd230]78
79<varlistentry id="mktemp">
80<term><command>mktemp</command></term>
81<listitem>
82<para>Creates temporary files in a secure manner; it is used in scripts</para>
83<indexterm zone="ch-system-mktemp mktemp"><primary sortas="b-mktemp">mktemp</primary></indexterm>
84</listitem>
85</varlistentry>
86
87<varlistentry id="tempfile">
88<term><command>tempfile</command></term>
89<listitem>
90<para>Creates temporary files in a less secure manner than
91<command>mktemp</command>; it is installed for backwards-compatibility</para>
92<indexterm zone="ch-system-mktemp tempfile"><primary sortas="b-tempfile">tempfile</primary></indexterm>
93</listitem>
94</varlistentry>
95</variablelist>
[673b0d8]96
97</sect2>
98
99</sect1>
[81fd230]100
Note: See TracBrowser for help on using the repository browser.