1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Index: serf/SConstruct
===================================================================
--- serf.orig/SConstruct
+++ serf/SConstruct
@@ -386,8 +386,8 @@ else:
### there is probably a better way to run/capture output.
### env.ParseConfig() may be handy for getting this stuff into the build
if CALLOUT_OKAY:
- apr_libs = os.popen(env.subst('$APR --link-libtool --libs')).read().strip()
- apu_libs = os.popen(env.subst('$APU --link-libtool --libs')).read().strip()
+ apr_libs = os.popen(env.subst('$APR --link-ld')).read().strip()
+ apu_libs = os.popen(env.subst('$APU --link-ld')).read().strip()
else:
apr_libs = ''
apu_libs = ''
|