diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2018-11-14 05:14:31 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-11-28 02:06:12 +0100 |
commit | 5fc3056e6a89bda51d48fe6273fe5e6e2ae986d9 (patch) | |
tree | f21ecd71a7c7e70a98056ebe42dce00638f0f7a9 /scripts | |
parent | e1b9dc6bea9585701637e0ed14f24cb5b20cf341 (diff) | |
download | pacman-5fc3056e6a89bda51d48fe6273fe5e6e2ae986d9.tar.gz pacman-5fc3056e6a89bda51d48fe6273fe5e6e2ae986d9.tar.xz |
scripts: make repo-add utilize a wrapper as well
Now that repo-add uses libmakepkg, it needs to have $LIBRARY set before
testing it in-tree.
[Allan: fix "make distcheck"]
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index d60f2cb8..54a8d215 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -1,10 +1,7 @@ # enforce that all scripts have a --help and --version option AUTOMAKE_OPTIONS = std-options AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = \ - makepkg-wrapper \ - pacman-db-upgrade-wrapper \ - pacman-key-wrapper \ - pkgdelta-wrapper + $(WRAPPER) SUBDIRS = po @@ -135,7 +132,8 @@ WRAPPER = \ makepkg-wrapper \ pacman-db-upgrade-wrapper \ pacman-key-wrapper \ - pkgdelta-wrapper + pkgdelta-wrapper \ + repo-add-wrapper COMPLETION_IN = \ completion/bash_completion \ |