Source: hp48cc Version: 1.0-3 Severity: serious Justification: policy section 4.6
Debian policy section 4.6 requires that failures from a build step are propagated rather than continuing and possibly misbuilding. hp48cc violates this in the upstream build system. The toplevel Makefile.in says: | all install clean realclean mostyclean: | @for f in $(subdirs); do \ | (cd $$f && $(MAKE) $@) \ | done If any of these fails, no failure is raised and the build continues. I suggest adding "set -e" before the loop to fix this. Helmut