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

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Christoforides <alexis@thenull.net>2017-08-11 19:18:48 +0300
committerAlexis Christoforides <alexis@thenull.net>2017-08-11 19:18:48 +0300
commit47f82456814a05b077e31b58d66c1e4c640aac79 (patch)
tree157bbf26aa6aa866b92bfdb3696adde8fdaadb87
parentb445017309aac741a26d8c51bb0636234084bf23 (diff)
Avoid normalizing symlinks from build path.
This can create other problems, but allows us to create shorter build paths for ourselves on CI, where we are hitting a "max path length" issue on Mac SDK
-rwxr-xr-xbockbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bockbuild.py b/bockbuild.py
index 122fee8..af913c8 100755
--- a/bockbuild.py
+++ b/bockbuild.py
@@ -68,7 +68,7 @@ class Bockbuild:
def run(self):
self.name = 'bockbuild'
- self.root = os.path.dirname (os.path.realpath(__file__)) # Bockbuild system root
+ self.root = os.path.dirname (os.path.abspath(__file__)) # Bockbuild system root
self.execution_root = os.getcwd()
self.resources = set([os.path.realpath(
os.path.join(self.root, 'packages'))]) # list of paths on where to look for packages, patches, etc.