Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-05 18:50:18 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-05 18:50:18 +0400
commit6b0c7c1e59ddb1ab5afbb9b3ccb078c73bf676ee (patch)
tree48f7e7c0e402d90d5d04c87a65ec8eac776319cf /build_files/build_environment/prepare_release_env.sh
parenta1b954d60831f041591b5cf362a0cb5d7fed8cbb (diff)
Release environment script: correction to python shm check
Diffstat (limited to 'build_files/build_environment/prepare_release_env.sh')
-rwxr-xr-xbuild_files/build_environment/prepare_release_env.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/prepare_release_env.sh b/build_files/build_environment/prepare_release_env.sh
index 0bad1501540..b16ce784be9 100755
--- a/build_files/build_environment/prepare_release_env.sh
+++ b/build_files/build_environment/prepare_release_env.sh
@@ -715,7 +715,7 @@ EOF
# NOTE: this sounds strange, but make sure /dev/shm/ is writable by your user,
# otherwise syncronization primitives wouldn't be included into python
-if [[ "`stat -c '%a' /dev/shm/`" != "777" ]]; then
+if [[ "\`stat -c '%a' /dev/shm/\`" != "777" ]]; then
echo "Error checking syncronization primitives"
exit 1
fi