Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From 07b5ed42d7041ccc084889eaa96817aa097bf461 Mon Sep 17 00:00:00 2001 |
| 2 | From: Robert Yang <liezhi.yang@windriver.com> |
| 3 | Date: Tue, 3 Feb 2015 03:10:25 +0000 |
| 4 | Subject: [PATCH] Makefile: fix gzip command |
| 5 | |
| 6 | The "-c" doesn't work in command "gzip file -c", need use "gzip -c file" |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | |
| 10 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> |
| 11 | --- |
| 12 | Makefile | 2 +- |
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 14 | |
| 15 | diff --git a/Makefile b/Makefile |
| 16 | index 219a591..c7d147a 100644 |
| 17 | --- a/Makefile |
| 18 | +++ b/Makefile |
| 19 | @@ -144,7 +144,7 @@ install_hwlatdetect: hwlatdetect |
| 20 | install -D -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py ; \ |
| 21 | rm -f "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 22 | ln -s $(PYLIB)/hwlatdetect.py "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 23 | - gzip src/hwlatdetect/hwlatdetect.8 -c >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz" ; \ |
| 24 | + gzip -c src/hwlatdetect/hwlatdetect.8 >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz" ; \ |
| 25 | fi |
| 26 | |
| 27 | .PHONY: release |
| 28 | -- |
| 29 | 2.0.1 |
| 30 | |