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