X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_auto_build;fp=dh_auto_build;h=9cfe70ef9b1eeb1658d94eb44fb1de402c3853a1;hb=776abbb23a899ebba954774c8b3740706a21f72b;hp=75ce51cf78d19180cef1ba1bd0c45db798ce499b;hpb=51dea74baba625b8d63bbf7e19ad7e069d05ab14;p=debhelper.git diff --git a/dh_auto_build b/dh_auto_build index 75ce51c..9cfe70e 100755 --- a/dh_auto_build +++ b/dh_auto_build @@ -7,7 +7,7 @@ dh_auto_build - automatically builds a package =cut use strict; -use Debian::Debhelper::Dh_Lib; +use Debian::Debhelper::Dh_Buildsystems; =head1 SYNOPSIS @@ -37,18 +37,8 @@ or override any standard parameters that dh_auto_build passes. =cut -init(); - -if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") { - doit(exists $ENV{MAKE} ? $ENV{MAKE} : "make", @{$dh{U_PARAMS}}); -} -elsif (-e "setup.py") { - doit("python", "setup.py", "build", @{$dh{U_PARAMS}}); -} -elsif (-e "Build.PL" && -e "Build") { - $ENV{MODULEBUILDRC} = "/dev/null"; - doit("perl", "Build", @{$dh{U_PARAMS}}); -} +my $manager = new Debian::Debhelper::Dh_Buildsystems; +$manager->run_dh_auto_tool(); =head1 SEE ALSO