浏览代码

[Libc] Disable ENV when disable DFS.

Bernard Xiong 6 年之前
父节点
当前提交
ad42abb933
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      components/libc/compilers/newlib/libc.c

+ 1 - 1
components/libc/compilers/newlib/libc.c

@@ -35,11 +35,11 @@ int libc_system_init(void)
         libc_stdio_set_console(dev_console->parent.name, O_WRONLY);
     #endif
     }
-#endif
 
     /* set PATH and HOME */
     putenv("PATH=/bin");
     putenv("HOME=/home");
+#endif
 
 #if defined RT_USING_PTHREADS && !defined RT_USING_COMPONENTS_INIT
     pthread_system_init();