]> git.donarmstrong.com Git - debhelper.git/commitdiff
remove now-unnecessary caching
authorJoey Hess <joey@kitenet.net>
Sun, 9 May 2010 16:44:19 +0000 (12:44 -0400)
committerJoey Hess <joey@kitenet.net>
Sun, 9 May 2010 16:44:19 +0000 (12:44 -0400)
Debian/Debhelper/Buildsystem.pm

index 88aefab37a5c42a1102fe9f727891901f73a0d88..763baa9d1773d40957c87f11122fc094cf632034 100644 (file)
@@ -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: