mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
- add-changelog-entry - coverage (.lcovrc) - cppcheck, cppcheck-report - doc (renamed from docs) - grammar - mes-doc - uml - update-python-dependencies - valgrind (add_test_setup instead of custom target)
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -euv
|
|
|
|
cd @srcdir@
|
|
|
|
if test "@HAVE_PIP_COMPILE@" != "no" ; then
|
|
rm -f ./src/requirements.txt
|
|
pip-compile -r ./src/requirements.in
|
|
fi
|