mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
parisc: quiet palo not-found message from "which"
Reduces moaning when building on a machine without palo installed. Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
This commit is contained in:
parent
ef017bebd0
commit
6525ee55bb
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ libs-y += arch/parisc/lib/ `$(CC) -print-libgcc-file-name`
|
|||
|
||||
drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/
|
||||
|
||||
PALO := $(shell if which palo; then : ; \
|
||||
PALO := $(shell if (which palo 2>&1); then : ; \
|
||||
elif [ -x /sbin/palo ]; then echo /sbin/palo; \
|
||||
fi)
|
||||
|
||||
|
|
Loading…
Reference in a new issue