minimize output during build
This commit is contained in:
parent
24280d8017
commit
4bbee8eac6
4
Makefile
4
Makefile
|
@ -8,8 +8,8 @@ run: deps build
|
||||||
dev: build tags
|
dev: build tags
|
||||||
|
|
||||||
build: dist/setup-config
|
build: dist/setup-config
|
||||||
if ! $(CABAL) build; then $(CABAL) configure; $(CABAL) build; fi
|
@if ! $(CABAL) build; then $(CABAL) configure; $(CABAL) build; fi
|
||||||
ln -sf dist/build/propellor-config/propellor-config propellor
|
@ln -sf dist/build/propellor-config/propellor-config propellor
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install $(DEBDEPS) || (apt-get update && apt-get --no-upgrade --no-install-recommends -y install $(DEBDEPS)); fi || true
|
@if [ $$(whoami) = root ]; then apt-get --no-upgrade --no-install-recommends -y install $(DEBDEPS) || (apt-get update && apt-get --no-upgrade --no-install-recommends -y install $(DEBDEPS)); fi || true
|
||||||
|
|
Loading…
Reference in New Issue