mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
Actually check if stdbool.h exists when BOOTSTRAPPING.
This commit is contained in:
parent
26ffc9613f
commit
b448dd2f9e
2 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ BROKEN_LINKER= 0
|
|||
BUILTIN_BOOL= 1
|
||||
BOOL_TYPE= 0
|
||||
HAVE_VSSCANF= 1
|
||||
.if defined(BOOTSTRAPPING)
|
||||
.if defined(BOOTSTRAPPING) && !exists(/usr/include/stdbool.h)
|
||||
HEADER_STDBOOL= 0
|
||||
.else
|
||||
HEADER_STDBOOL= 1
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ BROKEN_LINKER= 0
|
|||
BUILTIN_BOOL= 1
|
||||
BOOL_TYPE= 0
|
||||
HAVE_VSSCANF= 1
|
||||
.if defined(BOOTSTRAPPING)
|
||||
.if defined(BOOTSTRAPPING) && !exists(/usr/include/stdbool.h)
|
||||
HEADER_STDBOOL= 0
|
||||
.else
|
||||
HEADER_STDBOOL= 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue