Explorar o código

tools/distclean: No need to bailout on distclean failures

Thomas Guyot-Sionnest %!s(int64=17) %!d(string=hai) anos
pai
achega
bd7a70eef1
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      tools/distclean

+ 1 - 2
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