diff options
author | Christian Breunig <christian@breunig.cc> | 2023-03-11 12:59:17 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-03-11 12:59:17 +0100 |
commit | 633ba252a92957091da2941715e8edd0e53aa31e (patch) | |
tree | b85717bbe2eb6cf302726e2316e9378f956e84e9 /packages/hostap/build.sh | |
parent | 74173b1ba5e524100828983f99ad077cc1f54b57 (diff) | |
download | vyos-build-633ba252a92957091da2941715e8edd0e53aa31e.tar.gz vyos-build-633ba252a92957091da2941715e8edd0e53aa31e.zip |
hostap: T5076: move build dependency installation to build.sh
Fix for commit f163dea ("Docker: T5076: unbloat container - remove dependencies
for hostap") as in the hostap Git repo there are no Debian build files available,
they will later be copied in by build.sh from Debian SALSA wpa repository.
Diffstat (limited to 'packages/hostap/build.sh')
-rwxr-xr-x | packages/hostap/build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/hostap/build.sh b/packages/hostap/build.sh index 98b77d38..c66bda3d 100755 --- a/packages/hostap/build.sh +++ b/packages/hostap/build.sh @@ -22,6 +22,10 @@ echo 'allow-tlsv1.patch' > ${SRC}/debian/patches/series # Build Debian package cd ${SRC} + +echo "I: Ensure Debian build dependencies are met" +sudo mk-build-deps --install --tool "apt-get --yes --no-install-recommends" + echo "I: Create new Debian Package version" version="$(git describe --tags | tr _ .)" dch -v ${version:7} "New version to support AES-GCM-256 for MACsec" -b |