diff options
author | Michal Marek <mmarek@suse.cz> | 2014-10-02 09:49:15 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-03-16 03:50:15 -0400 |
commit | 755457f992b7382298cda685b3ed1fea06d80fea (patch) | |
tree | ed13239049120e767064cbd1e0d816a8e4770525 | |
parent | 7f4eec395351ef25166276ad9dc3390b83ab41b6 (diff) |
powerpc/boot: Makefile cleanup
The $(image-n) variable will never exist, because unset Kconfig options
are '' and not 'n'.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | arch/powerpc/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 8a5bc1cfc6aa..73a19fac4850 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -317,7 +317,7 @@ endif | |||
317 | # Allow extra targets to be added to the defconfig | 317 | # Allow extra targets to be added to the defconfig |
318 | image-y += $(subst ",,$(CONFIG_EXTRA_TARGETS)) | 318 | image-y += $(subst ",,$(CONFIG_EXTRA_TARGETS)) |
319 | 319 | ||
320 | initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-)) | 320 | initrd- := $(patsubst zImage%, zImage.initrd%, $(image-)) |
321 | initrd-y := $(patsubst zImage%, zImage.initrd%, \ | 321 | initrd-y := $(patsubst zImage%, zImage.initrd%, \ |
322 | $(patsubst dtbImage%, dtbImage.initrd%, \ | 322 | $(patsubst dtbImage%, dtbImage.initrd%, \ |
323 | $(patsubst simpleImage%, simpleImage.initrd%, \ | 323 | $(patsubst simpleImage%, simpleImage.initrd%, \ |