summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schmauss <erik.schmauss@intel.com>2019-01-09 16:41:58 -0800
committerErik Schmauss <erik.schmauss@intel.com>2019-01-09 16:42:31 -0800
commitfeca5d3bd12d14f301789b8ba2d1d79f3a0d628d (patch)
tree83cc1cc83e05952995f60a401e9e220076849d32
parentaace846bb8f9b5877e100017f37fefc09dd2fde6 (diff)
downloadacpica-feca5d3bd12d14f301789b8ba2d1d79f3a0d628d.tar.gz
iASL: Makefile: support parent directories with spaces
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
-rw-r--r--generate/unix/iasl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/generate/unix/iasl/Makefile b/generate/unix/iasl/Makefile
index 98dac7131..23ca16b39 100644
--- a/generate/unix/iasl/Makefile
+++ b/generate/unix/iasl/Makefile
@@ -297,7 +297,7 @@ include ../Makefile.rules
safe_yacc = \
_d=`mktemp -d $(OBJDIR)/$(1).XXXXXX` &&\
cd $$_d &&\
- $(YACC) $(YFLAGS) -v -d -p$(1) $(abspath $(2)) &&\
+ $(YACC) $(YFLAGS) -v -d -p$(1) "$(abspath $(2))" &&\
cd - > /dev/null;\
mv $$_d/y.tab$(suffix $(3)) $(3);\
_r=$$?;\