From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 6FA631F461; Sun, 12 May 2019 00:55:25 +0000 (UTC) Date: Sun, 12 May 2019 00:55:25 +0000 From: Eric Wong To: cmogstored-public@bogomips.org Subject: [PATCH 2/1] build: add .gitattributes to EXTRA_DIST Message-ID: <20190512005525.a3ohgmontkwhbj5u@dcvr> References: <20190427212630.25879-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190427212630.25879-1-e@80x24.org> List-Id: --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 9f4f87a..29fccf3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -234,7 +234,8 @@ tap_support = tapset/all.stp tapset/http_access_log.gawk tapset/ioq_wait.awk examples := examples/cmogstored.socket examples/cmogstored@.service EXTRA_DIST = $(RB_TESTS) $(RL_CGEN) $(RL_ALL) $(PERL_TESTS) $(extra_doc) \ - .gitignore Rakefile autogen.sh GNUmakefile bsd/README doc m4 \ + .gitignore .gitattributes \ + Rakefile autogen.sh GNUmakefile bsd/README doc m4 \ test/test_helper.rb test/iostat-mock.rb \ test/.gitignore test/gen-slow.sh test/slow.mk \ cmogstored.x .ctags $(SLOW_RB_FILES) \ -- EW