From: Joey Hess Date: Sun, 9 May 2010 16:44:19 +0000 (-0400) Subject: remove now-unnecessary caching X-Git-Tag: 7.4.20~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c77e9d08ced12f8180a3f1c173570cbfe569c2da;p=debhelper.git remove now-unnecessary caching --- diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm index 88aefab..763baa9 100644 --- a/Debian/Debhelper/Buildsystem.pm +++ b/Debian/Debhelper/Buildsystem.pm @@ -12,10 +12,6 @@ use Cwd (); use File::Spec; use Debian::Debhelper::Dh_Lib; -# Cache DEB_BUILD_GNU_TYPE value. Performance hit of multiple -# invocations is noticable when listing build systems. -our $DEB_BUILD_GNU_TYPE = dpkg_architecture_value("DEB_BUILD_GNU_TYPE"); - # Build system name. Defaults to the last component of the class # name. Do not override this method unless you know what you are # doing. @@ -38,7 +34,7 @@ sub DESCRIPTION { # Default build directory. Can be overriden in the derived # class if really needed. sub DEFAULT_BUILD_DIRECTORY { - "obj-" . $DEB_BUILD_GNU_TYPE; + "obj-" . dpkg_architecture_value("DEB_BUILD_GNU_TYPE"); } # Constructs a new build system object. Named parameters: