lib/scripts/patch-scripts.bash
changeset 2760 c2a90e8b4831
parent 2744 34993cdffbf7
child 3052 b7922b9d7acd
--- a/lib/scripts/patch-scripts.bash	Fri Mar 07 14:49:56 1997 +0100
+++ b/lib/scripts/patch-scripts.bash	Fri Mar 07 14:51:50 1997 +0100
@@ -13,14 +13,14 @@
   local BINARY=""
 
   if [ -f "$DEFAULT" ]; then	# preferred location
-    echo "found $DEFAULT" >&2
+    echo "using $DEFAULT" >&2
     echo "$DEFAULT"
     return
   else				# find in PATH
     BASE=$(basename "$DEFAULT")
     BINARY=$(type -path "$BASE")
     if [ -n "$BINARY" ]; then
-      echo "found $BINARY" >&2
+      echo "using $BINARY" >&2
       echo "$BINARY"
       return
     else