From: Modestas Vainius Date: Sat, 21 Nov 2009 15:16:45 +0000 (+0200) Subject: Fix deep recursive in cmake::test(). X-Git-Tag: 7.4.6~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cd7215f3fc6f01aea455a80240ab59ddc04f3a7f;p=debhelper.git Fix deep recursive in cmake::test(). --- diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm index 24f486f..d4a98f4 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