summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Arch.pm
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Dpkg/Arch.pm')
-rw-r--r--scripts/Dpkg/Arch.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm
index 373d0b144..10e2f85ad 100644
--- a/scripts/Dpkg/Arch.pm
+++ b/scripts/Dpkg/Arch.pm
@@ -62,7 +62,7 @@ use Dpkg ();
use Dpkg::Gettext;
use Dpkg::ErrorHandling;
use Dpkg::Util qw(:list);
-use Dpkg::BuildEnv;
+use Dpkg::Build::Env;
my (@cpu, @os);
my (%cputable, %ostable);
@@ -111,7 +111,7 @@ if available.
sub get_build_arch()
{
- return Dpkg::BuildEnv::get('DEB_BUILD_ARCH') || get_raw_build_arch();
+ return Dpkg::Build::Env::get('DEB_BUILD_ARCH') || get_raw_build_arch();
}
{
@@ -191,7 +191,7 @@ if available.
sub get_host_arch()
{
- return Dpkg::BuildEnv::get('DEB_HOST_ARCH') || get_raw_host_arch();
+ return Dpkg::Build::Env::get('DEB_HOST_ARCH') || get_raw_host_arch();
}
=item @arch_list = get_valid_arches()