]> git.donarmstrong.com Git - debhelper.git/blob - dh_installdirs.1
r245: Initial Import
[debhelper.git] / dh_installdirs.1
1 .TH DH_INSTALLDIRS 1 "" "Debhelper Commands" "Debhelper Commands"
2 .SH NAME
3 dh_installdirs \- create subdirectories in package build directories
4 .SH SYNOPSIS
5 .B dh_installdirs
6 .I "[debhelper options] [-A] [dir ...]"
7 .SH "DESCRIPTION"
8 dh_installdirs is a debhelper program that is responsible for creating
9 subdirectories in package build directories.
10 .P
11 Any directory names specified as parameters will be created in the package
12 build directory of the first package dh_installdirs is told to act on. By
13 default, this is the first binary package in debian/control, but if you use 
14 -p, -i, or -a flags, it will be the first package specified by those flags.
15 .P
16 A file named debian/package.dirs (debian/dirs may be used for the first
17 binary package in debian/control) can list other directories to be created.
18 Separate the directory names with whitespace.
19 .P
20 Be sure to only use directory names relative to the package build
21 directory. Ie, "/usr/bin" should not be used, use "usr/bin" instead.
22 .SH OPTIONS
23 .TP
24 .B debhelper options
25 See
26 .BR debhelper (1)
27 for a list of options common to all debhelper commands.
28 .TP
29 .B \-A, \--all
30 Create any directories specified by command line parameters in ALL packages
31 acted on, not just the first.
32 .TP
33 .B dir ...
34 Create these directories in the package build directory of the first package
35 acted on. (Or in all packages if -A is specified.)
36 .SH ENVIRONMENT
37 See
38 .BR debhelper (1)
39 for a list of environment variables that affect all debhelper commands.
40 .SH "SEE ALSO"
41 .BR debhelper (1)
42 .SH BUGS
43 It's impossible to specify filenames with spaces or other whitespace in them
44 in debian/dirs file. This is more a historical design flaw than a bug.
45 .SH AUTHOR
46 Joey Hess <joeyh@master.debian.org>