Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6525ee55 authored by Kyle McMartin's avatar Kyle McMartin
Browse files

parisc: quiet palo not-found message from "which"



Reduces moaning when building on a machine without palo installed.

Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent ef017beb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)