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-02-14 01:21:41 +0300
committerAlexis Christoforides <alexis@thenull.net>2017-02-14 01:21:41 +0300
commit7d446abd40b5331b5900cc280dfe8c6d1a1eee4c (patch)
treeb8da1f4fdce9b98589d92879df760ce7dd458bb9 /bockbuild
parent437fc27baf9629f72b5f3a1c8f33b19d95ee59b6 (diff)
Fixed input to autoconf
Diffstat (limited to 'bockbuild')
-rw-r--r--bockbuild/darwinprofile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bockbuild/darwinprofile.py b/bockbuild/darwinprofile.py
index 36afba4..6ab3e6b 100644
--- a/bockbuild/darwinprofile.py
+++ b/bockbuild/darwinprofile.py
@@ -76,7 +76,7 @@ class DarwinProfile (UnixProfile):
#TODO: Version checking
- map(lambda t : self.configure_flags.append ('%s=no' % t), 'basename_r clock_getres clock_gettime clock_settime dirname_r getentropy mkostemp mkostemps'.split(' '))
+ map(lambda t : self.configure_flags.append ('ac_cv_func_%s=no' % t), 'basename_r clock_getres clock_gettime clock_settime dirname_r getentropy mkostemp mkostemps'.split(' '))
self.gcc_flags.extend([
'-D_XOPEN_SOURCE',