From d738ad620c8d5a5301d4a08e3590645be8426e37 Mon Sep 17 00:00:00 2001 From: rewine <1758075541@qq.com> Date: Mon, 23 May 2022 01:44:03 +0800 Subject: [PATCH] [tools/kconfig-frontends] append path for scons env (#5972) --- tools/kconfig-frontends/SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/kconfig-frontends/SConstruct b/tools/kconfig-frontends/SConstruct index ef0ce33573..945fde9f69 100644 --- a/tools/kconfig-frontends/SConstruct +++ b/tools/kconfig-frontends/SConstruct @@ -1,6 +1,7 @@ import os env = Environment() +env.AppendENVPath('PATH', os.environ['PATH']) env['CPPPATH'] = ['libs/parser', 'libs'] env['CPPDEFINES'] = ['CURSES_LOC=\\"ncurses.h\\"', 'HAVE_CONFIG_H', 'ROOTMENU=\\"Configuration\\"', -- GitLab