summaryrefslogtreecommitdiff
path: root/Cmds
diff options
context:
space:
mode:
authorJesper Dangaard Brouer <brouer@redhat.com>2014-02-27 15:12:32 +0100
committerJesper Dangaard Brouer <brouer@redhat.com>2014-02-27 15:12:32 +0100
commitb771dce7a7671cbfe858861ee37ea9616938919f (patch)
treeec5cb80cf180a48ba51ca18196defc3ab705c247 /Cmds
parenta37101161784cb6904f001e3236afd1ad567efb7 (diff)
build: fix syntax error when detecting SHELL make variable
Fix the shell syntax error, introduced in: commit 11c34c86ca4 (build: Set SHELL make variable to bash if possible) Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Diffstat (limited to 'Cmds')
-rw-r--r--Cmds2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cmds b/Cmds
index 8db24f5..d381a22 100644
--- a/Cmds
+++ b/Cmds
@@ -2,7 +2,7 @@
Q = @
# Try to use bash as shell for make
-SHELL := $(shell if [ -x /bin/bash ]; then echo /bin/bash; else echo /bin/sh; fi ; fi)
+SHELL := $(shell if [ -x /bin/bash ]; then echo /bin/bash; else echo /bin/sh; fi)
# GCC related stuff
LD = $(Q)echo -e " LD\t$@" && $(CCACHE) $(CROSS_COMPILE)gcc
i?id=98829 https://bugs.freedesktop.org/show_bug.cgi?id=99134 which has a patch for the underlying problem, but it hasn't gotten to me, so I'm applying the workaround. ] Cc: Daniel Vetter <daniel.vetter@intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Cc: Imre Deak <imre.deak@intel.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/isa/wss')