aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2014-10-02 09:49:15 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2015-03-16 03:50:15 -0400
commit755457f992b7382298cda685b3ed1fea06d80fea (patch)
treeed13239049120e767064cbd1e0d816a8e4770525
parent7f4eec395351ef25166276ad9dc3390b83ab41b6 (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/Makefile2
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
318image-y += $(subst ",,$(CONFIG_EXTRA_TARGETS)) 318image-y += $(subst ",,$(CONFIG_EXTRA_TARGETS))
319 319
320initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-)) 320initrd- := $(patsubst zImage%, zImage.initrd%, $(image-))
321initrd-y := $(patsubst zImage%, zImage.initrd%, \ 321initrd-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%, \