From ffad8bd07af2727fda3fa8e53c4ec77ca53adb8f Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Thu, 20 May 2021 04:01:00 +0000 Subject: [PATCH] Makefile: remove an always false condition git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@9422 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- 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; \