diff options
author | David Robillard <d@drobilla.net> | 2020-11-10 10:14:40 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-10 10:14:40 +0100 |
commit | 2378c1cfbccc2012387d3361d3a8120b38582df0 (patch) | |
tree | 307db76be6415a7738cdd505842debf7940a91df | |
parent | a6b0d55b4d24860f204082663c16b113f879ff54 (diff) | |
download | serd-2378c1cfbccc2012387d3361d3a8120b38582df0.tar.gz serd-2378c1cfbccc2012387d3361d3a8120b38582df0.tar.bz2 serd-2378c1cfbccc2012387d3361d3a8120b38582df0.zip |
Fix header installation
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ lib_source = ['src/base64.c', def build(bld): # C Headers includedir = '${INCLUDEDIR}/serd-%s/serd' % SERD_MAJOR_VERSION - bld.install_files(includedir, bld.path.ant_glob('serd/*.h')) + bld.install_files(includedir, bld.path.ant_glob('include/serd/*.h')) # Pkgconfig file autowaf.build_pc(bld, 'SERD', SERD_VERSION, SERD_MAJOR_VERSION, [], |