diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-22 18:53:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-22 18:53:00 +0100 |
commit | da35f6472f3e74f023c733f9e4157637a0502d1e (patch) | |
tree | 1bf82cb9f0e58483815b268d54b58d2edd24030f /debian/rules | |
parent | 31545edb16d36636758fdd30c0b9b190d9f1539e (diff) | |
parent | 41c005a0458b9bb0507f44573ec74d71d7bb5ebc (diff) | |
download | vyos-utils-1.3.8.tar.gz vyos-utils-1.3.8.zip |
T4875 backports
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index c6e8920..09cdd65 100755 --- a/debian/rules +++ b/debian/rules @@ -9,12 +9,14 @@ override_dh_auto_build: eval `opam env` mkdir -p _build ocamlfind ocamlopt -o _build/numeric -package pcre -linkpkg src/numeric.ml + ocamlfind ocamlopt -o _build/file-path -package fileutils -linkpkg src/file_path.ml ocamlfind ocamlopt -o _build/validate-value -package pcre,unix,containers -linkpkg src/validate_value.ml override_dh_auto_install: mkdir -p $(DIR)/usr/libexec/vyos/validators cp _build/numeric $(DIR)/usr/libexec/vyos/validators cp _build/validate-value $(DIR)/usr/libexec/vyos/ + cp _build/file-path $(DIR)/usr/libexec/vyos/validators override_dh_auto_test: echo "No tests yet" |