diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2008-11-24 02:08:39 -0500 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2008-11-24 02:08:39 -0500 |
commit | bd7a70eef1391cc5c95553b871697c677fa0d440 (patch) | |
tree | 1b51865b0e83d660e93415688213f2128cd17855 /tools | |
parent | b505870842512099ff1bf031ae0d70349e2be764 (diff) | |
download | monitoring-plugins-bd7a70eef1391cc5c95553b871697c677fa0d440.tar.gz |
tools/distclean: No need to bailout on distclean failures
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/distclean | 3 |
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 |