From 0d236d8b4f8aecc258e26ad53755a39d9b76032e Mon Sep 17 00:00:00 2001 From: Jordan Rupprecht Date: Thu, 5 Dec 2019 15:48:34 -0800 Subject: [lldb] Update hardcoded Makefile.rules inclusions. This replaces `include $(LEVEL)/Makefile.rules` with `include Makefile.rules`. The lldb test driver already passes the include path when running make, and specifically looking for "../../Makefile.rules" forces the test to be in a specific location. Removing this hardcoded relative path will make it possible to move this test as-is. --- .../Python/lldbsuite/test/functionalities/float-display/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile index f5a47fcc46c..c9319d6e688 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/float-display/Makefile @@ -1,3 +1,2 @@ -LEVEL = ../../make C_SOURCES := main.c -include $(LEVEL)/Makefile.rules +include Makefile.rules -- cgit v1.2.3