From 3b119cc5ba4d2f9c43e60bcd970ead88cca078fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= <gaetan.harter@fu-berlin.de> Date: Mon, 25 Feb 2019 16:46:44 +0100 Subject: [PATCH] boards/native: unexport TERM* variables TERMPROG and TERMFLAGS variables do not need to be exported as they are used directly by a make receipe. --- boards/native/Makefile.include | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/native/Makefile.include b/boards/native/Makefile.include index 6260117129..974effb341 100644 --- a/boards/native/Makefile.include +++ b/boards/native/Makefile.include @@ -40,7 +40,7 @@ else export DEBUGGER ?= gdb endif -export TERMPROG ?= $(ELFFILE) +TERMPROG ?= $(ELFFILE) export FLASHER = true export VALGRIND ?= valgrind export CGANNOTATE ?= cg_annotate @@ -100,7 +100,7 @@ else export PORT = endif -export TERMFLAGS := $(PORT) $(TERMFLAGS) +TERMFLAGS := $(PORT) $(TERMFLAGS) export ASFLAGS = ifeq ($(shell basename $(DEBUGGER)),lldb) @@ -117,7 +117,7 @@ debug-valgrind-server: export VALGRIND_FLAGS ?= --vgdb=yes --vgdb-error=0 -v \ --leak-check=full --track-origins=yes --fullpath-after=$(RIOTBASE) \ --read-var-info=yes term-cachegrind: export CACHEGRIND_FLAGS += --tool=cachegrind -term-gprof: export TERMPROG = GMON_OUT_PREFIX=gmon.out $(ELFFILE) +term-gprof: TERMPROG = GMON_OUT_PREFIX=gmon.out $(ELFFILE) all-valgrind: export CFLAGS += -DHAVE_VALGRIND_H -g all-valgrind: export NATIVEINCLUDES += $(shell pkg-config valgrind --cflags) all-debug: export CFLAGS += -g -- GitLab