Makefile: Add a missing -q option to a grep command

This commit is contained in:
Bart Van Assche
2018-05-05 01:32:58 -07:00
committed by Bart Van Assche
parent da39da34b5
commit 48121bb297

View File

@@ -509,7 +509,7 @@ dpkg: ../scst_$(VERSION).orig.tar.xz
) && \
rm -f "$${output_files[@]}" && \
buildopts=(-uc -us) && \
if dpkg-buildpackage --help 2>&1 | grep -- '-ui'; then \
if dpkg-buildpackage --help 2>&1 | grep -q -- '-ui'; then \
buildopts+=(-ui); \
fi && \
if dpkg-buildpackage --help 2>&1 | \