Skip to content

Commit a947d8a

Browse files
authored
Merge pull request #9897 from swiftlang/cherrypick-977780e31fb0c512dedd503e67ed5d5c2f38d80a
[lldb] Support even more swiftlang tests with nested make invocations…
2 parents 774ca27 + 1ad2b66 commit a947d8a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lldb/test/API/lang/swift/clashing_abi_name/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ all: libLibrary.dylib a.out
77
include Makefile.rules
88

99
libLibrary.dylib: Library.swift
10-
$(MAKE) MAKE_DSYM=YES CC=$(CC) SWIFTC=$(SWIFTC) \
10+
"$(MAKE)" MAKE_DSYM=YES CC=$(CC) SWIFTC=$(SWIFTC) \
1111
ARCH=$(ARCH) DSYMUTIL=$(DSYMUTIL) \
1212
BASENAME=Library \
1313
SWIFTFLAGS_EXTRAS="-I$(BUILDDIR) -enable-library-evolution -emit-library -emit-module -parse-as-library -module-abi-name a" \
1414
VPATH=$(SRCDIR) -I $(SRCDIR) -f $(SRCDIR)/dylib.mk all
1515

1616
clean::
17-
$(MAKE) BASENAME=Library VPATH=$(SRCDIR) -I $(SRCDIR) -f $(SRCDIR)/dylib.mk clean
17+
"$(MAKE)" BASENAME=Library VPATH=$(SRCDIR) -I $(SRCDIR) -f $(SRCDIR)/dylib.mk clean

lldb/test/API/lang/swift/expression/error_missing_type/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LD_EXTRAS = -lLibrary -L$(BUILDDIR)
44
all: libLibrary.dylib a.out
55

66
lib%.dylib: %.swift
7-
$(MAKE) MAKE_DSYM=NO DYLIB_ONLY=YES \
7+
"$(MAKE)" MAKE_DSYM=NO DYLIB_ONLY=YES \
88
DYLIB_HIDE_SWIFTMODULE=YES \
99
DYLIB_NAME=$(shell basename $< .swift) \
1010
DYLIB_SWIFT_SOURCES=$(shell basename $<) \

lldb/test/API/lang/swift/import_spi/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all: A.swiftmodule $(EXE)
88
include Makefile.rules
99

1010
A.swiftmodule: $(SRCDIR)/A.swift B.swiftmodule
11-
$(MAKE) -f $(MAKEFILE_RULES) \
11+
"$(MAKE)" -f $(MAKEFILE_RULES) \
1212
DYLIB_ONLY=YES \
1313
DYLIB_NAME=A \
1414
DYLIB_SWIFT_SOURCES=A.swift \
@@ -17,7 +17,7 @@ A.swiftmodule: $(SRCDIR)/A.swift B.swiftmodule
1717
LD_EXTRAS="-L$(BUILDDIR) -lB"
1818

1919
B.swiftmodule: $(SRCDIR)/B.swift
20-
$(MAKE) -f $(MAKEFILE_RULES) \
20+
"$(MAKE)" -f $(MAKEFILE_RULES) \
2121
DYLIB_ONLY=YES \
2222
DYLIB_NAME=B \
2323
DYLIB_SWIFT_SOURCES=B.swift \

0 commit comments

Comments
 (0)