Adjust variables that have been renamed

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-05-30 15:23:57 +01:00
parent 7b4323c66e
commit ba3cbb0cfb
5 changed files with 8 additions and 16 deletions

View File

@@ -77,13 +77,13 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
# Build
cd $(DIR_APP) && make bios $(MAKETUNING)
ifeq "$(MACHINE)" "x86_64"
ifeq "$(BUILD_ARCH)" "x86_64"
cd $(DIR_APP) && make efi64 $(MAKETUNING)
endif
# Install
cd $(DIR_APP) && make bios install
ifeq "$(MACHINE)" "x86_64"
ifeq "$(BUILD_ARCH)" "x86_64"
cd $(DIR_APP) && make efi64 install
endif