Skip to content

Commit 48e5719

Browse files
committed
Fix var name
1 parent fe49e0a commit 48e5719

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# Date: 2014-08-12
77
#-------------------------------------------------------------------------------
88

9-
build ?= debug
10-
BUILD_ARG := $(shell echo $(build) | tr 'A-Z' 'a-z')
11-
REBOOSTR_FILE := build/.bootstrap
9+
build ?= debug
10+
BUILD_ARG := $(shell echo $(build) | tr 'A-Z' 'a-z')
11+
REBOOTSTR_FILE := .build/.bootstrap
1212

1313
-include build/cache.mk
1414

@@ -22,9 +22,9 @@ distclean:
2222
bootstrap:
2323
@$(MAKE) -f build-aux/bootstrap.mk --no-print-directory $@ $(MAKEOVERRIDES)
2424

25-
rebootstrap: $(REBOOSTR_FILE)
26-
$(if $(build),$(filter-out build=%,$(shell cat $(REBOOSTR_FILE))) \
27-
build=$(BUILD_ARG),$(shell cat $(REBOOSTR_FILE))) --no-print-directory $(MAKEOVERRIDES)
25+
rebootstrap: $(REBOOTSTR_FILE)
26+
$(if $(build),$(filter-out build=%,$(shell cat $(REBOOTSTR_FILE))) \
27+
build=$(BUILD_ARG),$(shell cat $(REBOOTSTR_FILE))) --no-print-directory $(MAKEOVERRIDES)
2828

2929
test:
3030
CTEST_OUTPUT_ON_FAILURE=TRUE $(generator) -C$(DIR) $(VERBOSE) -j$(shell nproc) $@
@@ -40,7 +40,7 @@ tree:
4040

4141
build/cache.mk:
4242

43-
$(REBOOSTR_FILE):
43+
$(REBOOTSTR_FILE):
4444
@echo "Rerun 'make bootstrap'!" && false
4545

4646
.DEFAULT:

0 commit comments

Comments
 (0)