Sophie

Sophie

distrib > Mageia > 8 > x86_64 > by-pkgid > 2d43852d0ee2211f41b4663b5f2157af > files > 1

aubio-0.4.9-4.mga8.src.rpm

--- aubio-0.4.6/src/wscript_build.OR	2017-10-24 18:17:35.507487722 +0300
+++ aubio-0.4.6/src/wscript_build	2017-10-24 18:19:16.420739417 +0300
@@ -26,27 +26,28 @@
     build_features = ['cstlib', 'cshlib']
 elif ctx.env['DEST_OS'] in ['win32', 'win64']:
     build_features = ['cstlib', 'cshlib gensyms']
 elif ctx.env['DEST_OS'] in ['emscripten']:
     build_features = ['cstlib','cshlib']
 elif '--static' in ctx.env['LDFLAGS'] or '--static' in ctx.env['LINKFLAGS']:
     # static in cflags, ...
     build_features = ['cstlib']
 else:
     # linux, darwin, android, mingw, ...
     build_features = ['cstlib', 'cshlib']
 
 # also install static lib
 from waflib.Tools.c import cstlib
 cstlib.inst_to = '${LIBDIR}'
 
 for target in build_features:
     ctx(features = 'c ' + target,
             use = uselib + ['lib_objects'],
             target = 'aubio',
+            install_path = '${LIBDIR}',
             export_symbols_regex=r'(?:.*aubio|fvec|lvec|cvec|fmat|new|del)_.*',
             vnum = ctx.env['LIB_VERSION'])
 
 # install headers, except _priv.h ones
 ctx.install_files('${INCLUDEDIR}/aubio/',
         ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
         relative_trick=True)