mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-24 09:13:37 +02:00
cmds.projects.CmdRequiredOsPkg|BaseCmdPkgRelations: Align APIs
In a push to eventually merge the classes, somewhat align the command-line API of CmdRequiredOsPkg to the one of BaseCmdPkgRelations by using dependency flavours as mandatory, first argument. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
d7e4bd9e33
commit
5b3118319c
3 changed files with 13 additions and 13 deletions
|
|
@ -193,7 +193,7 @@ prefix.done:
|
|||
touch $@
|
||||
|
||||
echo-build-deps:
|
||||
$(Q)echo $(call proj_query, required-os-pkg --quote --flavours "build" $(PROJECT))
|
||||
$(Q)echo $(call proj_query, required-os-pkg --quote "build" $(PROJECT))
|
||||
|
||||
git-ssh-%:
|
||||
bash -c "`git remote get-url --push $* | sed 's|ssh://||; s|\([^/]\+\)/\(.*\)|LC_CDPATH=/\2 ssh -o SendEnv=LC_CDPATH \1|'`"
|
||||
|
|
@ -215,10 +215,10 @@ pkg-manager-refresh:
|
|||
$(PKG_MANAGER) refresh
|
||||
|
||||
pkg-install-build-deps:
|
||||
$(PKG_MANAGER) install $(shell $(proj_query_cmd) required-os-pkg --quote --skip-excluded --flavours "build" $(PROJECT))
|
||||
$(PKG_MANAGER) install $(shell $(proj_query_cmd) required-os-pkg --quote --skip-excluded "build" $(PROJECT))
|
||||
|
||||
pkg-install-release-deps:
|
||||
$(PKG_MANAGER) install $(shell $(proj_query_cmd) required-os-pkg --quote --skip-excluded --flavours "build run release" $(PROJECT))
|
||||
$(PKG_MANAGER) install $(shell $(proj_query_cmd) required-os-pkg --quote --skip-excluded "build,run,release" $(PROJECT))
|
||||
|
||||
pkg-install-testbuild-deps: pkg-install-release-deps
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue