From 55f3a301d1d6f2c6040e1ffa164a4597574c6e79 Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Sat, 19 Apr 2003 03:12:28 +0000 Subject: [PATCH] Workaround Tru64 type quirkiness. Thanks to Jim Brown for the patch. Bug #202057 r=cls --- build/unix/run-mozilla.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/unix/run-mozilla.sh b/build/unix/run-mozilla.sh index e765b7cad605..53a8c5062c5a 100755 --- a/build/unix/run-mozilla.sh +++ b/build/unix/run-mozilla.sh @@ -141,7 +141,7 @@ moz_get_debugger() moz_test_binary /bin/type if [ $? -eq 1 ] then - dpath=`type ${d} | awk '{print $3;}'` + dpath=`type ${d} | awk '{print $3;}' | sed -e 's/\.$//'` else dpath=`which ${d}` fi @@ -172,7 +172,7 @@ moz_run_program() moz_test_binary /bin/type if [ $? -eq 1 ] then - crc_prog=`type md5sum 2>/dev/null | awk '{print $3;}' 2>/dev/null` + crc_prog=`type md5sum 2>/dev/null | awk '{print $3;}' 2>/dev/null | sed -e 's/\.$//'` else crc_prog=`which md5sum 2>/dev/null` fi @@ -240,7 +240,7 @@ moz_debug_program() moz_test_binary /bin/type if [ $? -eq 1 ] then - debugger=`type $moz_debugger | awk '{print $3;}'` + debugger=`type $moz_debugger | awk '{print $3;}' | sed -e 's/\.$//'` else debugger=`which $moz_debugger` fi