From: Sedat Dilek Date: Mon, 24 Jul 2017 15:27:05 +0000 (+0200) Subject: kbuild: Update example for ccflags-y usage X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3d91a353674c9cb38431d631598c9ed15d22fbc8;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git kbuild: Update example for ccflags-y usage Update the ccflags-y example to match current usage. Signed-off-by: Sedat Dilek Signed-off-by: Jonathan Corbet --- diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 7003141a6d4f..329e740adea7 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt @@ -297,9 +297,9 @@ more details, with real examples. ccflags-y specifies options for compiling with $(CC). Example: - # drivers/acpi/Makefile - ccflags-y := -Os - ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT + # drivers/acpi/acpica/Makefile + ccflags-y := -Os -D_LINUX -DBUILDING_ACPICA + ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT This variable is necessary because the top Makefile owns the variable $(KBUILD_CFLAGS) and uses it for compilation flags for the