diff options
author | Dylan Baker <[email protected]> | 2018-03-26 11:10:16 -0700 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2018-04-12 21:49:30 +0200 |
commit | 1550c67a3aadc783b4fc209974195c6a2e9aea74 (patch) | |
tree | 6ee8232c2dacbb1a74c6e2a79385d23252bd9875 | |
parent | 92cb895316b34374e65b6903c52811ffb2ee4747 (diff) |
autotools: include meson_get_version
Otherwise meson won't read the VERSION file and won't set a version.
That means that pkg-config files will have version unset as well.
Fixes: 3e9533d9b88d75d99632fa40e38cfed842d10842
("meson: Add script to use VERSION file for getting version")
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
(cherry picked from commit bc2fdb9759dc702ec351a044b3fd408c0701fedb)
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5c3a6717d34..226587d2c5b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -64,7 +64,8 @@ EXTRA_DIST = \ meson_options.txt \ bin/meson.build \ include/meson.build \ - bin/install_megadrivers.py + bin/install_megadrivers.py \ + bin/meson_get_version.py noinst_HEADERS = \ include/c99_alloca.h \ |