From ecba8846aab3c7ab0c6d223456834222b8bec488 Mon Sep 17 00:00:00 2001 From: Frederic Riss Date: Fri, 15 Jun 2018 20:36:03 +0000 Subject: Fix TestExec after r334783 The second makefile that was added has implicit rules which meant that secondprog.cpp would be built once into a secondprog binary, but it would also be compiled as a.out overwriting the main binary. This lead to spurious failures. This commit simplifies the Makefile to build only once with the correct executable name. llvm-svn: 334861 --- .../Python/lldbsuite/test/functionalities/exec/secondprog.mk | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/exec') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk index 88f54705998..88f76b5113b 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk +++ b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk @@ -1,13 +1,6 @@ LEVEL = ../../make CXX_SOURCES := secondprog.cpp - -all: secondprog - -secondprog: - $(CXX) $(CXXFLAGS) -o secondprog $(SRCDIR)/secondprog.cpp - -clean:: - rm -rf secondprog secondprog.dSYM +EXE = secondprog include $(LEVEL)/Makefile.rules -- cgit v1.2.3