diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-14 13:02:01 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-14 13:02:01 +0400 |
commit | 011e6c31009fe83d7b0db61b36cfd24638af8784 (patch) | |
tree | 4bc2d116888bb08504724972e63a6fe64845b0e2 /rules | |
parent | 241fa90a4d3bd7db097614c37318b62d1c5dabfc (diff) | |
download | cibs-011e6c31009fe83d7b0db61b36cfd24638af8784.tar.gz |
Pring help on missing dependencies
Diffstat (limited to 'rules')
-rw-r--r-- | rules/ips.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rules/ips.mk b/rules/ips.mk index aaddf20..184d517 100644 --- a/rules/ips.mk +++ b/rules/ips.mk @@ -131,7 +131,10 @@ check-build-dep-stamp: check-ips-build-dep-stamp # issue 'make d=' to skip dependency checking: check-ips-build-dep-stamp: d=true check-ips-build-dep-stamp: - [ -z "$d" ] || [ -z "$(build-depends)" ] || pkg list $(build-depends) + @[ -z "$d" ] || [ -z "$(build-depends)" ] || pkg list $(build-depends) || \ + (echo "type '$(MAKE) build-dep' to install build dependencies"; \ + echo "or add 'd=' to command, e. g. '$(MAKE) build d='"; \ + false) touch $@ |