diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-08-16 01:55:45 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-10-04 03:25:48 +0200 |
commit | bcb44891ef8aa6feee3090cc0fd87b60e73aed5d (patch) | |
tree | 0de0ec9b8c08ccc969293f6f6114e487e1565769 /src | |
parent | 024fde9748692c71f0d9e6c667439c912a78b6df (diff) | |
download | pacman-bcb44891ef8aa6feee3090cc0fd87b60e73aed5d.tar.gz pacman-bcb44891ef8aa6feee3090cc0fd87b60e73aed5d.tar.xz |
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 <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/common/Makefile.am | 3 | ||||
-rw-r--r-- | src/pacman/Makefile.am | 2 | ||||
-rw-r--r-- | src/util/Makefile.am | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/src/common/Makefile.am b/src/common/Makefile.am index c0e37273..05378712 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -1,2 +1,3 @@ EXTRA_DIST = \ - util-common.h util-common.c + meson.build \ + ini.h ini.c util-common.h util-common.c diff --git a/src/pacman/Makefile.am b/src/pacman/Makefile.am index 2344daff..ac2f8e46 100644 --- a/src/pacman/Makefile.am +++ b/src/pacman/Makefile.am @@ -1,5 +1,7 @@ SUBDIRS = po +EXTRA_DIST = meson.build po/meson.build + # paths set at make time conffile = ${sysconfdir}/pacman.conf dbpath = ${localstatedir}/lib/pacman/ diff --git a/src/util/Makefile.am b/src/util/Makefile.am index 8c6a5771..a454f224 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -1,3 +1,5 @@ +EXTRA_DIST = meson.build + # paths set at make time conffile = ${sysconfdir}/pacman.conf dbpath = ${localstatedir}/lib/pacman/ |