# HG changeset patch # User Guido Berhoerster # Date 1473783861 -7200 # Node ID 27bc2d4947da5f393c75cd6c735f446637c6b54a # Parent 8e9dd5328b5a6b30a8954228891f3398cb656fd0 Exclude "." from tarballs diff -r 8e9dd5328b5a -r 27bc2d4947da Makefile --- a/Makefile Sat Sep 03 14:02:42 2016 +0200 +++ b/Makefile Tue Sep 13 18:24:21 2016 +0200 @@ -114,6 +114,7 @@ dist: clobber $(PAX) -w -x ustar -s ',.*/\..*,,' -s ',./[^/]*\.tar\.gz,,' \ - -s ',\./,$(DISTNAME)/,' . | $(GZIP) > $(DISTNAME).tar.gz + -s ',^\.$$,,' -s ',\./,$(DISTNAME)/,' . | \ + $(GZIP) > $(DISTNAME).tar.gz -include $(patsubst %.o,%.d,$(OBJS))