Code

tools/distclean: No need to bailout on distclean failures
authorThomas Guyot-Sionnest <dermoth@aei.ca>
Mon, 24 Nov 2008 07:08:39 +0000 (02:08 -0500)
committerThomas Guyot-Sionnest <dermoth@aei.ca>
Mon, 24 Nov 2008 07:08:39 +0000 (02:08 -0500)
tools/distclean

index 6035a6d6acf745d372e133261d917a44b20bd6ca..f5e0ecef373c439c83928e22ab1fcb86c0b17bd7 100755 (executable)
@@ -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