uniphier: simplify GZIP compress rule
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 4 Jan 2018 03:59:11 +0000 (12:59 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 4 Jan 2018 03:59:46 +0000 (12:59 +0900)
It is not necessary to read data from stdin.  The input file name
is ripped off by -n option, anyway.  I still use the redirect for
the output to specify the output file name.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
plat/socionext/uniphier/platform.mk

index 41d0444877aa27bc17d55faba5c0b1e95bd06dfe..f99bbf58a25fd4231fa7c47938ecb96cd8b2891c 100644 (file)
@@ -117,4 +117,4 @@ endif
 bl1_gzip: $(BUILD_PLAT)/bl1.bin.gzip
 %.gzip: %
        @echo "  GZIP    $@"
-       $(Q)(cat $< | gzip -n -f -9 > $@) || (rm -f $@ || false)
+       $(Q)gzip -n -f -9 $< --stdout > $@