summaryrefslogtreecommitdiff
path: root/debian/patches/0002-Fix-cmake-call.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0002-Fix-cmake-call.patch')
-rw-r--r--debian/patches/0002-Fix-cmake-call.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/patches/0002-Fix-cmake-call.patch b/debian/patches/0002-Fix-cmake-call.patch
new file mode 100644
index 0000000..f7e3ddc
--- /dev/null
+++ b/debian/patches/0002-Fix-cmake-call.patch
@@ -0,0 +1,29 @@
+From: Lucas de Castro Borges <lucas@gnuabordo.com.br>
+Date: Sun, 25 Aug 2024 16:26:54 -0300
+Subject: Fix cmake call
+
+ Unknown argument when cmake been called.
+---
+ autolib/build.sh | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/autolib/build.sh b/autolib/build.sh
+index 42ec7de..84638df 100644
+--- a/autolib/build.sh
++++ b/autolib/build.sh
+@@ -19,7 +19,7 @@ autolib_build() {
+ pushd ${lib}/build > /dev/null || return $?
+ autolib_output_banner "${lib}: CMake Build Stage"
+ # YOU MUST set TEST to 1 in order to build the tests
+- TEST=$build_test cmake -v .. || {
++ TEST=$build_test cmake .. || {
+ autolib_output_error "${lib}: CMake Failure"
+ return 1
+ }
+@@ -29,4 +29,4 @@ autolib_build() {
+ return 1
+ }
+ popd > /dev/null || return $?
+-}
+\ No newline at end of file
++}