Skip to content

Commit 49c57d2

Browse files
lacombarmichal42
authored andcommitted
scripts/Makefile.build: do not reference EXTRA_CFLAGS as CFLAGS replacement
Usage of these flags has been deprecated for nearly 4 years by: commit f77bf01 Author: Sam Ravnborg <sam@neptun.(none)> Date: Mon Oct 15 22:25:06 2007 +0200 kbuild: introduce ccflags-y, asflags-y and ldflags-y Moreover, these flags (at least EXTRA_CFLAGS) have been documented for command line use. By default, gmake(1) do not override command line setting, so this is likely to result in build failure or unexpected behavior. Do not advertise for its usage. Cc: Sam Ravnborg <sam@ravnborg.org> Cc: linux-kbuild@vger.kernel.org Signed-off-by: Arnaud Lacombe <lacombar@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
1 parent 58238c8 commit 49c57d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/Makefile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ include $(kbuild-file)
4646
# If the save-* variables changed error out
4747
ifeq ($(KBUILD_NOPEDANTIC),)
4848
ifneq ("$(save-cflags)","$(CFLAGS)")
49-
$(error CFLAGS was changed in "$(kbuild-file)". Fix it to use EXTRA_CFLAGS)
49+
$(error CFLAGS was changed in "$(kbuild-file)". Fix it to use ccflags-y)
5050
endif
5151
endif
5252

0 commit comments

Comments
 (0)