summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem
diff options
context:
space:
mode:
authorModestas Vainius <modestas@vainius.eu>2009-11-21 17:16:45 +0200
committerJoey Hess <joey@gnu.kitenet.net>2009-11-21 13:08:05 -0500
commitcd7215f3fc6f01aea455a80240ab59ddc04f3a7f (patch)
treea7a0bfc0c1ad4bf47a63696100e41665ecb9d109 /Debian/Debhelper/Buildsystem
parentef27cc7aabe55d66bdd2321d310264cba3cc4fca (diff)
Fix deep recursive in cmake::test().
Diffstat (limited to 'Debian/Debhelper/Buildsystem')
-rw-r--r--Debian/Debhelper/Buildsystem/cmake.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm
index 24f486fc..d4a98f43 100644
--- a/Debian/Debhelper/Buildsystem/cmake.pm
+++ b/Debian/Debhelper/Buildsystem/cmake.pm
@@ -51,7 +51,7 @@ sub test {
my $this=shift;
$ENV{CTEST_OUTPUT_ON_FAILURE} = 1;
- return $this->test(@_);
+ return $this->SUPER::test(@_);
}
1