Merge pull request #439 from SchmErik/trivial-makefile

iASL: Makefile: support parent directories with spaces
This commit is contained in:
Robert Moore 2019-01-10 08:59:56 -08:00 committed by GitHub
commit 0870833dd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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=$$?;\