diff options
| author | John Estabrook <jestabro@vyos.io> | 2022-11-14 11:29:43 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-14 11:29:43 -0600 |
| commit | a406f74be3b0e9bda54ac46920e734a9045206ad (patch) | |
| tree | 60726e50aaa9ab490de2c56f0436b47217d15aba /debian/rules | |
| parent | ea7d9ad2e3aa97c9d5d2f0b2ee91ae5787bb9fc3 (diff) | |
| parent | 96bb119393d8606d9408d72aa5cb468702bef625 (diff) | |
| download | vyos-utils-a406f74be3b0e9bda54ac46920e734a9045206ad.tar.gz vyos-utils-a406f74be3b0e9bda54ac46920e734a9045206ad.zip | |
Merge pull request #8 from dmbaturin/file-path-validator
T4798: add a file path validator
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" |
