From 8443c5754aabb2d8040c00e1466d604951322c6f Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 9 Mar 2021 23:46:16 +0100 Subject: [PATCH] - fix typo --- make/buildsystem-update.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make/buildsystem-update.mk b/make/buildsystem-update.mk index 7178ea3b..8ecfe39a 100644 --- a/make/buildsystem-update.mk +++ b/make/buildsystem-update.mk @@ -7,7 +7,7 @@ update-self: export GIT_MERGE_AUTOEDIT=no; \ git pull ifeq ($(HAS_INTERNALS),yes) - $(CD) $(BASE_DIR)/$(NI-INTERNALS); git pull + $(CD) $(BASE_DIR)/$(NI_INTERNALS); git pull endif update-neutrino: @@ -70,7 +70,7 @@ update-all: update update-remotes push: git push ifeq ($(HAS_INTERNALS),yes) - $(CD) $(BASE_DIR)/$(NI-INTERNALS); git push + $(CD) $(BASE_DIR)/$(NI_INTERNALS); git push endif $(CD) $(BUILD_GENERIC_PC); git push $(CD) $(SOURCE_DIR)/$(NI_DRIVERS_BIN); git push @@ -91,7 +91,7 @@ endif status: git status -s -b ifeq ($(HAS_INTERNALS),yes) - $(CD) $(BASE_DIR)/$(NI-INTERNALS); git status -s -b + $(CD) $(BASE_DIR)/$(NI_INTERNALS); git status -s -b endif $(CD) $(BUILD_GENERIC_PC); git status -s -b $(CD) $(SOURCE_DIR)/$(NI_DRIVERS_BIN); git status -s -b