summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan.c.baker@intel.com>2020-04-24 12:29:42 -0700
committerMarge Bot <eric+marge@anholt.net>2020-06-01 18:59:18 +0000
commit6ef314b4fa938310f282951888a1b51e31e4fa51 (patch)
tree36e939e1e8c501c6630b5f7058d8f32b52cca8a1
parenta16e8bfb948d1aa6e84905d0ad47960bfb9fcfed (diff)
meson: Use build_always_stale instead of build_always
which was deprecated in 0.47. This doesn't change behavior, just shuts up a warning. Acked-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4740>
-rw-r--r--src/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index bdc6a54cc3f..8d8bac6a238 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -43,7 +43,8 @@ sha1_h = custom_target(
'git_sha1.h',
output : 'git_sha1.h',
command : [prog_python, git_sha1_gen_py, '--output', '@OUTPUT@'],
- build_always : true, # commit sha1 can change without having touched these files
+ build_by_default : true,
+ build_always_stale : true, # commit sha1 can change without having touched these files
)
subdir('gtest')