summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-04 12:29:43 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-04 12:29:43 +0000
commit76e83768dc9ba4c3c8c2495a7b8914b2fd975ee2 (patch)
tree5f7c7375bbc1f81b306e92644a06a05eabd738a6 /wscript
parentdf1e19f68c9292a09adae63adf2015db4748db0a (diff)
potential fix for ./waf configure problems introduced last night
git-svn-id: svn://localhost/ardour2/branches/3.0@12180 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 407ffec572..e5f58d15d4 100644
--- a/wscript
+++ b/wscript
@@ -568,9 +568,9 @@ def configure(conf):
# finding curl can be tricky
#
if Options.options.also_libdir != '':
- curl_linkflags = "-L" + Options.options.also_libdir + " -lcurl -lssl -lcrypto"
+ curl_linkflags = [ '-L' + Options.options.also_libdir, '-lcurl', '-lssl', '-lcrypto' ]
else:
- curl_linkflags = "-lcurl -lssl -lcrypto"
+ curl_linkflags = [ '-lcurl', '-lssl', '-lcrypto' ]
conf.check_cc(function_name='curl_global_init', header_name='curl/curl.h', linkflags=curl_linkflags, uselib_store='CURL')
# Tell everyone that this is a waf build