diff options
Diffstat (limited to '')
-rwxr-xr-x | sca-cpp/trunk/components/log/scribed-central-conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-cpp/trunk/components/log/scribed-central-conf b/sca-cpp/trunk/components/log/scribed-central-conf index b23646c24f..d8d008623d 100755 --- a/sca-cpp/trunk/components/log/scribed-central-conf +++ b/sca-cpp/trunk/components/log/scribed-central-conf @@ -18,9 +18,9 @@ # under the License. # Generate a Scribe central conf -here=`readlink -f $0`; here=`dirname $here` +here=`echo "import os; print os.path.realpath('$0')" | python`; here=`dirname $here` mkdir -p $1 -root=`readlink -f $1` +root=`echo "import os; print os.path.realpath('$1')" | python` port=$2 if [ "$port" = "" ]; then |