From e097845cb8605d7f7b08c3c049f6a2befd9629c8 Mon Sep 17 00:00:00 2001 From: Konstantin Kharlamov Date: Tue, 18 May 2021 15:20:51 +0300 Subject: [PATCH] Makefile: remove an always false condition The `if false` condition will never be true, so let's just remove that paragraph. --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 78bb23af2..92831a6d4 100644 --- a/Makefile +++ b/Makefile @@ -387,11 +387,7 @@ dpkg: ../scst_$(VERSION).orig.tar.gz else \ buildopts+=(-j4); \ fi && \ - if false; then \ - dpkg-buildpackage "$${buildopts[@]}"; \ - else \ - debuild "$${buildopts[@]}" --lintian-opts --profile debian; \ - fi && \ + debuild "$${buildopts[@]}" --lintian-opts --profile debian && \ mkdir -p dpkg && \ for f in "$${output_files[@]}" ../scst_$(VERSION).orig.tar.[gx]z; do\ mv $$f dpkg || true; \