Skip to content

Commit 2a0efbf

Browse files
committed
pkg/debian: use cmake as buildsystem
When building debian packages a lot of errors occur. After investigation, it seems that happens due to `dh` (debhelpers, see https://manpages.debian.org/testing/debhelper/dh.1.en.html) treating the top-level Makefile as build tool for some steps. The top-level Makefile was created only for testing/CI purposes. When building packages, we should make use of cmake - this is exactly what this commit does.
1 parent af43106 commit 2a0efbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/debian/debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export CARGO_HOME
1414
export RUSTUP_HOME
1515

1616
%:
17-
dh $@
17+
dh $@ --buildsystem=cmake
1818

1919
override_dh_auto_clean:
2020
rm -rf scylla-rust-wrapper/.cargo

0 commit comments

Comments
 (0)