Commit 1ed6fbfc by Jim Wilson

Use pwd if PWDCMD is undefined. Add missing echo command.

From-SVN: r3305
parent c5d3565c
...@@ -59,7 +59,7 @@ case $LIB in ...@@ -59,7 +59,7 @@ case $LIB in
/*) /*)
;; ;;
*) *)
cd $LIB; LIB=`${PWDCMD}` cd $LIB; LIB=`${PWDCMD-pwd}`
;; ;;
esac esac
...@@ -197,7 +197,7 @@ while [ $# != 0 ]; do ...@@ -197,7 +197,7 @@ while [ $# != 0 ]; do
if cmp $file $2/$file >/dev/null 2>&1; then if cmp $file $2/$file >/dev/null 2>&1; then
rm $2/$file rm $2/$file
else else
Fixed $file echo Fixed $file
fi fi
fi fi
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment