mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 21:07:54 +00:00
1ce2eab963
Signed-off-by: Alexey Neyman <stilor@att.net>
8 lines
217 B
Plaintext
8 lines
217 B
Plaintext
# Set the kconfig option.
|
|
AC_DEFUN([CTNG_SET_KCONFIG_OPTION],
|
|
[AS_IF(
|
|
[test -n "$$1" -o "$2" = "y"],
|
|
[AC_SUBST([KCONFIG_$1], ["def_bool y"])],
|
|
[AC_SUBST([KCONFIG_$1], ["bool"])])
|
|
])
|