Remove unused Makefile paths (#19487)

This commit is contained in:
Joel Challis 2023-01-04 03:25:48 +00:00 committed by GitHub
parent 6d41ba75d3
commit f9ee0571a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,17 +48,10 @@ ON_ERROR := error_occurred=1
BREAK_ON_ERRORS = no BREAK_ON_ERRORS = no
STARTING_MAKEFILE := $(firstword $(MAKEFILE_LIST)) ROOT_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
ROOT_MAKEFILE := $(lastword $(MAKEFILE_LIST))
ROOT_DIR := $(dir $(ROOT_MAKEFILE))
ifeq ($(ROOT_DIR),) ifeq ($(ROOT_DIR),)
ROOT_DIR := . ROOT_DIR := .
endif endif
ABS_STARTING_MAKEFILE := $(abspath $(STARTING_MAKEFILE))
ABS_ROOT_MAKEFILE := $(abspath $(ROOT_MAKEFILE))
ABS_STARTING_DIR := $(dir $(ABS_STARTING_MAKEFILE))
ABS_ROOT_DIR := $(dir $(ABS_ROOT_MAKEFILE))
STARTING_DIR := $(subst $(ABS_ROOT_DIR),,$(ABS_STARTING_DIR))
include paths.mk include paths.mk