From: Roland Hieber Date: Thu, 22 Oct 2009 23:02:04 +0000 (+0200) Subject: fix lintian warnings and errors X-Git-Tag: REL_9.10.23 X-Git-Url: https://git.rohieb.name/iserv-mod-room-reservation.git/commitdiff_plain/1e66ca805e28c5fbbb693dcaaed4ca27eb8a0bae fix lintian warnings and errors --- diff --git a/Makefile b/Makefile index f61f840..41d1775 100644 --- a/Makefile +++ b/Makefile @@ -128,7 +128,7 @@ uninstall: # clean up clean: distclean - [ -e Doxyfile ] && rm Doxyfile + if [ -e Doxyfile ]; then rm Doxyfile; fi distclean: $(RM) doc/source diff --git a/debian/rules b/debian/rules index fd363e4..2d79ba9 100755 --- a/debian/rules +++ b/debian/rules @@ -7,7 +7,7 @@ build: rm -f dirs files binary-indep: - -$(MAKE) clean + [ ! -f Makefile ] || $(MAKE) clean dh_clean dh_testdir @@ -56,7 +56,7 @@ binary: binary-indep clean: dh_testdir dh_testroot - -$(MAKE) clean + [ ! -f Makefile ] || $(MAKE) clean dh_clean .PHONY: build clean binary-indep binary install