2018-01-06 18:31:15 -08:00
|
|
|
# Set the kconfig option.
|
|
|
|
AC_DEFUN([CTNG_SET_KCONFIG_OPTION],
|
|
|
|
[AS_IF(
|
2018-01-07 23:44:19 -08:00
|
|
|
[test -n "$$1" -o "$2" = "y"],
|
2018-01-06 18:31:15 -08:00
|
|
|
[AC_SUBST([KCONFIG_$1], ["def_bool y"])],
|
|
|
|
[AC_SUBST([KCONFIG_$1], ["bool"])])
|
|
|
|
])
|