From 4025638c00de5e9e21ef419a5b107141525283ca Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Fri, 27 Apr 2012 17:52:08 +0200 Subject: [PATCH] build-sys: avoid harmless error message during install Different way to fix #411817 by just avoiding to list a directory that won't contain python files. --- pym/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/Makefile.in b/pym/Makefile.in index aa903bb42..ce8fa3920 100644 --- a/pym/Makefile.in +++ b/pym/Makefile.in @@ -17,7 +17,7 @@ INSTALL = @INSTALL@ INSTALL_subst = ${top_builddir}/subst-install list_sourcedir_dirs = \ - ( cd "$(srcdir)" && find . -name '.svn' -prune -o -type d -print ) + ( cd "$(srcdir)" && find . -name '.git' -prune -o -type d -print | sed 's#^./\?##' ) all: -- 2.26.2