浏览代码

Scripts: kconfig: nconf: fix _GNU_SOURCE redefined warning

Fix below warning when make nconfig is run initially
or after make clean.

  HOSTCC  scripts/kconfig/nconf.o
scripts/kconfig/nconf.c:8:0: warning: "_GNU_SOURCE" redefined
 #define _GNU_SOURCE
 ^
<command-line>:0:0: note: this is the location of the previous definition

Signed-off-by: Cheah Kok Cheong <thrust73@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Cheah Kok Cheong 8 年之前
父节点
当前提交
0eb4734696
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      scripts/kconfig/nconf.c

+ 2 - 0
scripts/kconfig/nconf.c

@@ -5,7 +5,9 @@
  * Derived from menuconfig.
  * Derived from menuconfig.
  *
  *
  */
  */
+#ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #define _GNU_SOURCE
+#endif
 #include <string.h>
 #include <string.h>
 #include <stdlib.h>
 #include <stdlib.h>