File tree 4 files changed +15
-15
lines changed
4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -294,15 +294,15 @@ may-sync-config := 1
294
294
single-build :=
295
295
296
296
ifneq ($(filter $(no-dot-config-targets ) , $(MAKECMDGOALS ) ) ,)
297
- ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
297
+ ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
298
298
need-config :=
299
- endif
299
+ endif
300
300
endif
301
301
302
302
ifneq ($(filter $(no-sync-config-targets ) , $(MAKECMDGOALS ) ) ,)
303
- ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
303
+ ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
304
304
may-sync-config :=
305
- endif
305
+ endif
306
306
endif
307
307
308
308
need-compiler := $(may-sync-config )
@@ -323,9 +323,9 @@ endif
323
323
# We cannot build single targets and the others at the same time
324
324
ifneq ($(filter $(single-targets ) , $(MAKECMDGOALS ) ) ,)
325
325
single-build := 1
326
- ifneq ($(filter-out $(single-targets), $(MAKECMDGOALS)),)
326
+ ifneq ($(filter-out $(single-targets), $(MAKECMDGOALS)),)
327
327
mixed-build := 1
328
- endif
328
+ endif
329
329
endif
330
330
331
331
# For "make -j clean all", "make -j mrproper defconfig all", etc.
Original file line number Diff line number Diff line change 15
15
KBUILD_DEFCONFIG := multi_defconfig
16
16
17
17
ifdef cross_compiling
18
- ifeq ($(CROSS_COMPILE),)
18
+ ifeq ($(CROSS_COMPILE),)
19
19
CROSS_COMPILE := $(call cc-cross-prefix, \
20
20
m68k-linux-gnu- m68k-linux- m68k-unknown-linux-gnu-)
21
- endif
21
+ endif
22
22
endif
23
23
24
24
#
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ export CROSS32CC
50
50
51
51
# Set default cross compiler for kernel build
52
52
ifdef cross_compiling
53
- ifeq ($(CROSS_COMPILE),)
53
+ ifeq ($(CROSS_COMPILE),)
54
54
CC_SUFFIXES = linux linux-gnu unknown-linux-gnu suse-linux
55
55
CROSS_COMPILE := $(call cc-cross-prefix, \
56
56
$(foreach a,$(CC_ARCHES), \
57
57
$(foreach s,$(CC_SUFFIXES),$(a)-$(s)-)))
58
- endif
58
+ endif
59
59
endif
60
60
61
61
ifdef CONFIG_DYNAMIC_FTRACE
Original file line number Diff line number Diff line change @@ -112,13 +112,13 @@ ifeq ($(CONFIG_X86_32),y)
112
112
# temporary until string.h is fixed
113
113
KBUILD_CFLAGS += -ffreestanding
114
114
115
- ifeq ($(CONFIG_STACKPROTECTOR),y)
116
- ifeq ($(CONFIG_SMP),y)
115
+ ifeq ($(CONFIG_STACKPROTECTOR),y)
116
+ ifeq ($(CONFIG_SMP),y)
117
117
KBUILD_CFLAGS += -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard
118
- else
118
+ else
119
119
KBUILD_CFLAGS += -mstack-protector-guard=global
120
- endif
121
- endif
120
+ endif
121
+ endif
122
122
else
123
123
BITS := 64
124
124
UTS_MACHINE := x86_64
You can’t perform that action at this time.
0 commit comments