diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-03-21 20:36:23 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-03-21 20:36:23 +0000 |
commit | 74f0e2cc39308b992510b32d0aab25afc3572cd7 (patch) | |
tree | fbdf722ae2a056c1c8eeadb01d070fdf761dbb4a /lldb/packages/Python/lldbsuite | |
parent | 084b0c2f03786c1a40f834eec7e6d5a5458d27e6 (diff) | |
download | bcm5719-llvm-74f0e2cc39308b992510b32d0aab25afc3572cd7.tar.gz bcm5719-llvm-74f0e2cc39308b992510b32d0aab25afc3572cd7.zip |
Makefile.rules: Normalize use of trailing slashes in path variables.
llvm-svn: 356711
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/make/Makefile.rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules index 9cf5d9ddba2..ecfed7efc53 100644 --- a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules +++ b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules @@ -28,10 +28,10 @@ # Uncomment line below for debugging shell commands # SHELL = /bin/sh -x -SRCDIR := $(shell dirname $(firstword $(MAKEFILE_LIST)))/ +SRCDIR := $(shell dirname $(firstword $(MAKEFILE_LIST))) BUILDDIR := $(shell pwd) -THIS_FILE_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST)))/ -LLDB_BASE_DIR := $(THIS_FILE_DIR)../../../../../ +THIS_FILE_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST))) +LLDB_BASE_DIR := $(THIS_FILE_DIR)/../../../../../ #---------------------------------------------------------------------- # If OS is not defined, use 'uname -s' to determine the OS name. @@ -275,7 +275,7 @@ endif CFLAGS += -I$(SRCDIR) -I$(THIS_FILE_DIR) ifndef NO_TEST_COMMON_H - CFLAGS += -include $(THIS_FILE_DIR)test_common.h + CFLAGS += -include $(THIS_FILE_DIR)/test_common.h endif CFLAGS += $(NO_LIMIT_DEBUG_INFO_FLAGS) $(ARCH_CFLAGS) $(CFLAGS_EXTRAS) |