diff options
author | Atsushi Eno <atsushieno@gmail.com> | 2020-12-24 21:23:27 +0900 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-24 18:43:40 +0100 |
commit | 6677a42446f0e4aa3a10a42ead4a04891b72ead0 (patch) | |
tree | 17926cac9c7a1418bf8218cd7c55f378510341ab | |
parent | 85b5317faf502d6ab279c896a3f6351b21fd019a (diff) | |
download | sratom-6677a42446f0e4aa3a10a42ead4a04891b72ead0.tar.gz sratom-6677a42446f0e4aa3a10a42ead4a04891b72ead0.tar.bz2 sratom-6677a42446f0e4aa3a10a42ead4a04891b72ead0.zip |
Fix header installation
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -96,7 +96,7 @@ lib_source = ['src/sratom.c'] def build(bld): # C Headers includedir = '${INCLUDEDIR}/sratom-%s/sratom' % SRATOM_MAJOR_VERSION - bld.install_files(includedir, bld.path.ant_glob('sratom/*.h')) + bld.install_files(includedir, bld.path.ant_glob('include/sratom/*.h')) # Pkgconfig file autowaf.build_pc(bld, 'SRATOM', SRATOM_VERSION, SRATOM_MAJOR_VERSION, [], |