From: Thomas Guyot-Sionnest Date: Mon, 24 Nov 2008 07:08:39 +0000 (-0500) Subject: tools/distclean: No need to bailout on distclean failures X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bd7a70eef1391cc5c95553b871697c677fa0d440;p=nagiosplug.git tools/distclean: No need to bailout on distclean failures --- diff --git a/tools/distclean b/tools/distclean index 6035a6d..f5e0ece 100755 --- a/tools/distclean +++ b/tools/distclean @@ -12,10 +12,9 @@ fi if [ -f Makefile ]; then echo "$0: Makefile present. Cleaning up with 'make distclean'..." - make distclean + make -i distclean if [ $? -ne 0 ]; then echo "Uh-oh! Make distclean failed." - echo "Please run './config.status' and try again." exit 1 fi fi