]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/namedown
compilation fix after wxGUIAppTraits::GetToolkitVersion() introduction
[wxWidgets.git] / distrib / msw / namedown
index 462141301e5c72dcb11e69a1a23ec357df8f1ee1..bc627d6aa88acbf7769386f986ccb163e065bac3 100755 (executable)
@@ -33,14 +33,14 @@ case $# in
       elif [ -d "${oldname}" ]; then
         mv "${oldname}" "${oldname}.bak" 
         mv "${oldname}.bak" "${newname:-${oldname}}"
-        echo "Directory ${oldname} converted to directory ${newname:-${oldname}}"
+#        echo "Directory ${oldname} converted to directory ${newname:-${oldname}}"
 #        echo /dev/null
 #Don't convert if the file does not exist
       elif [ ! -f "${oldname}" ]; then
         echo > /dev/null
 #Don't overwrite existing files
 #      elif [ -f "${newname}" ]; then
-#        echo "${oldname} not converted, file ${newname} already exists" 2>&1
+        echo "${oldname} not converted, file ${newname} already exists" 2>&1
 #Don't move to subdirectories if they happen to exist
       elif [ -d "${newname}" ]; then
         echo "${oldname} not converted, directory ${newname} already exists" 2>&1
@@ -48,7 +48,7 @@ case $# in
       else
         mv "${oldname}" "${oldname}.bak" 
         mv "${oldname}.bak" "${newname:-${oldname}}"
-        echo "File ${oldname} converted to file ${newname:-${oldname}}"
+#        echo "File ${oldname} converted to file ${newname:-${oldname}}"
       fi
    done
     ;;