Skip to content
Snippets Groups Projects
Commit ee5a9442 authored by zuul's avatar zuul Committed by Gerrit Code Review
Browse files

Merge "third_party/Makefile.rules: Replace unsupported != operator with $(shell ...)"

parents 64c03d4d 37472f73
No related merge requests found
ifeq ($(NOISY_BUILD),)
SUBMAKE?=$(MAKE) --quiet --no-print-directory
ECHO_PREFIX?=@
CMD_PREFIX?=@
QUIET_CONFIGURE=-q
REALLY_QUIET=&>/dev/null
SUBMAKE?=$(MAKE) --quiet --no-print-directory
ECHO_PREFIX?=@
CMD_PREFIX?=@
QUIET_CONFIGURE=-q
REALLY_QUIET=&>/dev/null
else
SUBMAKE?=$(MAKE)
ECHO_PREFIX?=@\#
CMD_PREFIX?=
QUIET_CONFIGURE=
REALLY_QUIET=
SUBMAKE?=$(MAKE)
ECHO_PREFIX?=@\#
CMD_PREFIX?=
QUIET_CONFIGURE=
REALLY_QUIET=
endif
DOWNLOAD :=
DOWNLOAD != which wget 2>/dev/null
DOWNLOAD:=$(if $(DOWNLOAD),$(DOWNLOAD) -O- ,)
DOWNLOAD := $(shell which wget 2>/dev/null)
DOWNLOAD := $(if $(DOWNLOAD),$(DOWNLOAD) -O- ,)
ifeq ($(DOWNLOAD),)
DOWNLOAD != which curl 2>/dev/null
DOWNLOAD:=$(if $(DOWNLOAD), $(DOWNLOAD) -L ,)
DOWNLOAD := $(shell which curl 2>/dev/null)
DOWNLOAD := $(if $(DOWNLOAD), $(DOWNLOAD) -L ,)
endif
ifeq ($(DOWNLOAD),)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment