diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-10-11 20:41:57 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-10-11 20:41:57 +0300 |
commit | 65974b4dad6796e6cf390a297634b0f457d8ae8a (patch) | |
tree | aec37babd1f86d579c71cfd60040e01c99d924c2 /test cases/common/9 header install/meson.build | |
parent | 56fba5313065afc0de478b6db924e50367864c32 (diff) | |
download | meson-65974b4dad6796e6cf390a297634b0f457d8ae8a.zip meson-65974b4dad6796e6cf390a297634b0f457d8ae8a.tar.gz meson-65974b4dad6796e6cf390a297634b0f457d8ae8a.tar.bz2 |
Renamed headers() to install_headers().
Diffstat (limited to 'test cases/common/9 header install/meson.build')
-rw-r--r-- | test cases/common/9 header install/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/9 header install/meson.build b/test cases/common/9 header install/meson.build index b5388ae..6564a5d 100644 --- a/test cases/common/9 header install/meson.build +++ b/test cases/common/9 header install/meson.build @@ -2,5 +2,5 @@ project('header install', 'c') as_array = ['subdir.h'] -h1 = headers('rootdir.h') -h2 = headers(as_array, subdir : 'subdir') +h1 = install_headers('rootdir.h') +h2 = install_headers(as_array, subdir : 'subdir') |