aboutsummaryrefslogtreecommitdiff
path: root/tools/distclean
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2008-11-24 02:08:39 -0500
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2008-11-24 02:08:39 -0500
commitbd7a70eef1391cc5c95553b871697c677fa0d440 (patch)
tree1b51865b0e83d660e93415688213f2128cd17855 /tools/distclean
parentb505870842512099ff1bf031ae0d70349e2be764 (diff)
downloadmonitoring-plugins-bd7a70eef1391cc5c95553b871697c677fa0d440.tar.gz
tools/distclean: No need to bailout on distclean failures
Diffstat (limited to 'tools/distclean')
-rwxr-xr-xtools/distclean3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/distclean b/tools/distclean
index 6035a6d6..f5e0ecef 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