From: Modestas Vainius Date: Mon, 29 Jun 2009 22:32:54 +0000 (+0300) Subject: Bug fix: pass extra command line arguments to cmake. X-Git-Tag: 7.3.0~7 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2ddab1cefed6fb9a1ec173e32fd01b0ca7514abb;p=debhelper.git Bug fix: pass extra command line arguments to cmake. Signed-off-by: Modestas Vainius --- diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm index 1679651..2c52e49 100644 --- a/Debian/Debhelper/Buildsystem/cmake.pm +++ b/Debian/Debhelper/Buildsystem/cmake.pm @@ -38,7 +38,7 @@ sub configure { push @flags, "-DCMAKE_VERBOSE_MAKEFILE=ON"; $this->mkdir_builddir(); - $this->doit_in_builddir("cmake", $this->get_source_rel2builddir(), @flags); + $this->doit_in_builddir("cmake", $this->get_source_rel2builddir(), @flags, @_); } 1