diff options
author | Niels Thykier <niels@thykier.net> | 2016-04-02 14:20:39 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-04-02 14:20:45 +0000 |
commit | d97912243ff7955cf3831ad41bf7ecacc70783d6 (patch) | |
tree | 84fab6f92ab60c2d465c630fa7e4742361677d86 /dh | |
parent | c7fcec35a3124cd0bde4e6a144dec8d423c17af4 (diff) | |
download | debhelper-d97912243ff7955cf3831ad41bf7ecacc70783d6.tar.gz |
RUn dh-autoreconf seq. by default in compat 10
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -287,6 +287,11 @@ if (compat(8, 1)) { # (and comes first so python-central loads later and can disable it). unshift @ARGV, "--with=python-support"; } +if (not compat(10, 1)) { + # Enable autoreconf'ing by default in compat 10 or later. Use the + # sequence add-on so existing --without=autoreconf + unshift(@ARGV, "--with=autoreconf"); +} init(options => { "until=s" => \$dh{UNTIL}, |