From 5945ce59bf14d8e5ffa50ef82ce56e79800a9bb2 Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Mon, 17 Aug 2020 12:22:04 +0200 Subject: [PATCH] fixed git distribution check for .gitattributes added in previous commit --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index ae1905f4c6..3f4a9c6250 100644 --- a/Makefile.am +++ b/Makefile.am @@ -135,6 +135,7 @@ dist-hook-git: distfiles (git --version) >/dev/null 2>&1; then \ (cd $(srcdir) && git ls-files) \ | grep -vE '\.gitignore|README.Git|Smake|Bug-administration' \ + | grep -vE '\.gitattributes' \ | LC_ALL=C sort -u > gitfiles; \ LC_ALL=C comm -1 -3 distfiles gitfiles > missing-distfiles; \ if test -s missing-distfiles; then \ -- 2.30.2