]> git.proxmox.com Git - iproute2.git/blame - debian/README.source
d/control: record sudo as build dependency
[iproute2.git] / debian / README.source
CommitLineData
3cf71090
DM
1This package uses quilt to manage all modifications to the upstream
2source. Changes are stored in the source package as diffs in
3debian/patches and applied during the build.
4
5To configure quilt to use debian/patches instead of patches, you want
6either to export QUILT_PATCHES=debian/patches in your environment
7or use this snippet in your ~/.quiltrc:
8
9 for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
10 if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
11 export QUILT_PATCHES=debian/patches
12 break
13 fi
14 done
15
16To get the fully patched source after unpacking the source package, cd to
17the root level of the source package and run:
18
19 quilt push -a
20
21The last patch listed in debian/patches/series will become the current
22patch.
23
24To add a new set of changes, first run quilt push -a, and then run:
25
26 quilt new <patch>
27
28where <patch> is a descriptive name for the patch, used as the filename in
29debian/patches. Then, for every file that will be modified by this patch,
30run:
31
32 quilt add <file>
33
34before editing those files. You must tell quilt with quilt add what files
35will be part of the patch before making changes or quilt will not work
36properly. After editing the files, run:
37
38 quilt refresh
39
40to save the results as a patch.
41
42Alternately, if you already have an external patch and you just want to
43add it to the build system, run quilt push -a and then:
44
45 quilt import -P <patch> /path/to/patch
46 quilt push -a
47
48(add -p 0 to quilt import if needed). <patch> as above is the filename to
49use in debian/patches. The last quilt push -a will apply the patch to
50make sure it works properly.
51
52To remove an existing patch from the list of patches that will be applied,
53run:
54
55 quilt delete <patch>
56
57You may need to run quilt pop -a to unapply patches first before running
58this command.