1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/vars.inc.mk: unexport TERM* variables

TERMPROG and TERMFLAGS variables do not need to be exported as they are
used directly by a make receipe.

Exporting them prevents overwriting 'RIOT_TERMINAL' in the test.
This commit is contained in:
Gaëtan Harter 2019-02-25 16:46:44 +01:00
parent 7e0891ebe5
commit d0cb6d26e1
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -72,8 +72,8 @@ export GIT_CACHE_DIR # path to git-cache cache directory
export FLASHER # The command to call on "make flash".
export FFLAGS # The parameters to supply to FLASHER.
export FLASH_ADDR # Define an offset to flash code into ROM memory.
export TERMPROG # The command to call on "make term".
export TERMFLAGS # Additional parameters to supply to TERMPROG.
# TERMPROG # The command to call on "make term".
# TERMFLAGS # Additional parameters to supply to TERMPROG.
export PORT # The port to connect the TERMPROG to.
export ELFFILE # The unstripped result of the compilation.
export HEXFILE # The stripped result of the compilation.