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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-02-04 18:42:49 +0300
committerGitHub <noreply@github.com>2020-02-04 18:42:49 +0300
commit23374e3b631bd69b49134c6a9e7ed6f9ae0c9d6b (patch)
tree7b549555cfdf380c372de53df18d85197187a7b8
parent5a05db67cb14844eaafe8070eb425685df6aa9e4 (diff)
Add /usr/local/bin to PATH (#144)
So that python3 is found which is needed for the mono build. I removed /usr/local/git/bin since it doesn't exist on our build bots anyway.
-rw-r--r--bockbuild/unixprofile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bockbuild/unixprofile.py b/bockbuild/unixprofile.py
index 81f5bbe..6f04851 100644
--- a/bockbuild/unixprofile.py
+++ b/bockbuild/unixprofile.py
@@ -24,7 +24,7 @@ class UnixProfile (Profile):
'%{staged_prefix}/bin',
'/usr/bin',
'/bin',
- '/usr/local/git/bin')
+ '/usr/local/bin')
self.env.set('C_INCLUDE_PATH', '%{staged_prefix}/include')