debian: add a makefile rule to install build deps
This commit is contained in:
parent
0a00e7e5eb
commit
fa4e329847
|
@ -94,6 +94,11 @@ debian/.stamp-bootstrap:
|
|||
(cd debian && ./bootstrap.sh)
|
||||
touch $@
|
||||
|
||||
build-depends: debian/.stamp-build-depends
|
||||
debian/.stamp-build-depends:
|
||||
./debian/util.sh install-build-depends
|
||||
touch $@
|
||||
|
||||
binary-basetest:
|
||||
@$(call show_vars)
|
||||
echo "applications/mod_commands" > debian/modules.conf
|
||||
|
|
|
@ -67,6 +67,7 @@ install_build_depends () {
|
|||
err "Can't find apt-get or aptitude; are you running on debian?"
|
||||
fi
|
||||
$apt install -y $(list_build_depends)
|
||||
touch $ddir/.stamp-build-depends
|
||||
}
|
||||
|
||||
cmd="$1"
|
||||
|
|
Loading…
Reference in New Issue