]> git.donarmstrong.com Git - debhelper.git/blob - dh_installdirs.1
r429: tweaks
[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 can list other directories to be created.
17 Separate the directory names with whitespace.
18 .P
19 Be sure to only use directory names relative to the package build
20 directory. Ie, "/usr/bin" should not be used, use "usr/bin" instead.
21 .SH OPTIONS
22 .TP
23 .B debhelper options
24 See
25 .BR debhelper (1)
26 for a list of options common to all debhelper commands.
27 .TP
28 .B \-A, \--all
29 Create any directories specified by command line parameters in ALL packages
30 acted on, not just the first.
31 .TP
32 .B dir ...
33 Create these directories in the package build directory of the first package
34 acted on. (Or in all packages if -A is specified.)
35 .SH ENVIRONMENT
36 See
37 .BR debhelper (1)
38 for a list of environment variables that affect all debhelper commands.
39 .SH "SEE ALSO"
40 .BR debhelper (1)
41 .SH BUGS
42 It's impossible to specify filenames with spaces or other whitespace in them
43 in debian/package.dirs file. This is more a historical design flaw than a bug.
44 .SH AUTHOR
45 Joey Hess <joeyh@debian.org>