From bcb44891ef8aa6feee3090cc0fd87b60e73aed5d Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Thu, 15 Aug 2019 19:55:45 -0400 Subject: autotools: distribute meson files If we use make dist to create the official, signed release tarballs, those will not have meson build files by default since autotools doesn't know what they are. Also distribute all src/common/ files. We never strictly needed any of them to be distributed with autotools, because the dist tarball dereferences the symlinks (???), but only some of them were being distributed, and meson needs them to be in the right location as we only build libcommon from the primary files. Signed-off-by: Eli Schwartz Signed-off-by: Allan McRae --- Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 98ad8b62..c661f447 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,14 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-doc --disable-git-version \ # Some files automatically included, so they aren't specified below: # AUTHORS, COPYING, NEWS, README -EXTRA_DIST = HACKING test/tap.sh +EXTRA_DIST = \ + HACKING test/tap.sh \ + meson.build meson_options.txt \ + build-aux/edit-script.sh.in \ + build-aux/meson-install-script.sh \ + build-aux/meson-make-symlink.sh \ + build-aux/script-wrapper.sh.in + # Sample makepkg prototype files pkgdatadir = ${datadir}/${PACKAGE} -- cgit v1.2.3-24-g4f1b