From 934c4af9502c09d4d08c0e6134d3bafe0a57be9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 26 Nov 2015 23:11:36 +0530 Subject: [PATCH] bash-completion: Disable during "make distcheck" as this requires installing files outside the prefix automake requires all files to be installed inside the prefix. bash-completion requires the files to be in a specific directory given by a pkg-config file. As such those two are having incompatible requirements and we just disable bash-completion installation for the time being when running "make distcheck". Nonetheless things like "make install" with e.g. a DESTDIR or a private installation into a user's directory will fail as in both cases the bash-completion data would be tried to be installed system-wide. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index c6bb205..e33bfd2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc +DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --with-bash-completion-dir=no SUBDIRS = ges tests tools common m4 pkgconfig docs bindings plugins -- 2.7.4