Skip to content

Commit

Permalink
fix debhelper build error
Browse files Browse the repository at this point in the history
- make deb fails with dh: error: Unknown sequence --with
  (options should not come before the sequence)

- fix deb build deps

Signed-off-by: Alexander Fougner <[email protected]>
  • Loading branch information
fougner committed Dec 9, 2023
1 parent 6b674b8 commit 5348553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Maintainer: Kent Overstreet <[email protected]>
Section: utils
Priority: optional
Standards-Version: 3.9.5
Build-Depends: debhelper (>= 9), pkg-config, libaio-dev, libblkid-dev,
Build-Depends: debhelper (>= 9), dh-python, pkg-config, libaio-dev, libblkid-dev,
libkeyutils-dev, liblz4-dev, libsodium-dev, liburcu-dev, libudev-dev,
libzstd-dev, uuid-dev, zlib1g-dev, python3, python3-docutils,
rustc, cargo, llvm, clang, libclang-dev, systemd
Expand Down
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
PREFIX := /usr

%:
dh --with python3 $@
dh $@ --with python3

override_dh_auto_install:
dh_auto_install -- "PREFIX=$(PREFIX)"

0 comments on commit 5348553

Please sign in to comment.