dh_autoreconf
Call autoreconf -f -i and keep track of the changed files.
- Provided by: dh-autoreconf (Version: 21+nmu1)
- Report a bug
Call autoreconf -f -i and keep track of the changed files.
dh_autoreconf [debhelper options] [-Xitem] [--mode=mode] [program -- params]
dh_autoreconf is responsible for calling autoreconf and creating the files debian/autoreconf.before and debian/autoreconf.after which contain checksums of all files before/after the build. It is complemented by dh_autoreconf_clean which creates a list of all changed and added files and removes them.
Please note that dh_autoreconf can only be run once. Thus, if you need to run multiple commands, use a script or similar. An example is given in dh-autoreconf(7).
Starting with version 3, the directories of common version control systems such as cvs, git, hg, svn, and bzr are excluded automatically.
For each tool executed by autoreconf(1), one can export a variable with the uppercase name of the tool to the specific program which shall be run, including true to prevent the tool in question from being run. The following example shows the beginning of a debian/rules for a package where automake 1.11 shall be run instead of the default automake version and libtoolize shall not be run:
#!/usr/bin/make -f
export AUTOMAKE = automake-1.11
export LIBTOOLIZE = true
Julian Andres Klode <jak@debian.org>