[Nagiosplug-checkins] SF.net SVN: nagiosplug:[2098] nagiosplug/trunk/tools/distclean

dermoth at users.sourceforge.net dermoth at users.sourceforge.net
Mon Nov 24 08:10:15 CET 2008


Revision: 2098
          http://nagiosplug.svn.sourceforge.net/nagiosplug/?rev=2098&view=rev
Author:   dermoth
Date:     2008-11-24 07:10:14 +0000 (Mon, 24 Nov 2008)

Log Message:
-----------
tools/distclean: No need to bailout on distclean failures

Modified Paths:
--------------
    nagiosplug/trunk/tools/distclean

Modified: nagiosplug/trunk/tools/distclean
===================================================================
--- nagiosplug/trunk/tools/distclean	2008-11-24 06:47:16 UTC (rev 2097)
+++ nagiosplug/trunk/tools/distclean	2008-11-24 07:10:14 UTC (rev 2098)
@@ -12,10 +12,9 @@
 
 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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Commits mailing list