diff options
-rwxr-xr-x | webkit/tools/layout_tests/layout_package/http_server.sh | 2 | ||||
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/layout_tests/layout_package/http_server.sh b/webkit/tools/layout_tests/layout_package/http_server.sh index 6d7d8f7..6ed371e 100755 --- a/webkit/tools/layout_tests/layout_package/http_server.sh +++ b/webkit/tools/layout_tests/layout_package/http_server.sh @@ -12,7 +12,7 @@ else # When not using the included python, we don't get automatic site.py paths. # Specifically, run_webkit_tests needs the paths in: # third_party/python_24/Lib/site-packages/google.pth - PYTHONPATH="$(readlink -f ${exec_dir}/../../../../tools/python):$PYTHONPATH" + PYTHONPATH="${exec_dir}/../../../../tools/python:$PYTHONPATH" export PYTHONPATH fi diff --git a/webkit/tools/layout_tests/run_webkit_tests.sh b/webkit/tools/layout_tests/run_webkit_tests.sh index e1994bf..3cfdac9 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.sh +++ b/webkit/tools/layout_tests/run_webkit_tests.sh @@ -12,7 +12,7 @@ else # When not using the included python, we don't get automatic site.py paths. # Specifically, run_webkit_tests needs the paths in: # third_party/python_24/Lib/site-packages/google.pth - PYTHONPATH="$(readlink -f ${exec_dir}/../../../tools/python):$PYTHONPATH" + PYTHONPATH="${exec_dir}/../../../tools/python:$PYTHONPATH" export PYTHONPATH fi |