diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -120,9 +120,10 @@ ifneq ($(KBUILD_OUTPUT),) | |||
120 | # Invoke a second make in the output directory, passing relevant variables | 120 | # Invoke a second make in the output directory, passing relevant variables |
121 | # check that the output directory actually exists | 121 | # check that the output directory actually exists |
122 | saved-output := $(KBUILD_OUTPUT) | 122 | saved-output := $(KBUILD_OUTPUT) |
123 | KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) | 123 | KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \ |
124 | && /bin/pwd) | ||
124 | $(if $(KBUILD_OUTPUT),, \ | 125 | $(if $(KBUILD_OUTPUT),, \ |
125 | $(error output directory "$(saved-output)" does not exist)) | 126 | $(error failed to create output directory "$(saved-output)")) |
126 | 127 | ||
127 | PHONY += $(MAKECMDGOALS) sub-make | 128 | PHONY += $(MAKECMDGOALS) sub-make |
128 | 129 | ||