Makefile: remove an always false condition

The `if false` condition will never be true, so let's just remove that
paragraph.
This commit is contained in:
Konstantin Kharlamov
2021-05-18 15:20:51 +03:00
parent ef118f8a79
commit e097845cb8
+1 -5
View File
@@ -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; \