# HG changeset patch # User Guido Berhoerster # Date 1473776852 -7200 # Node ID 6cbf50148e873d5c26321cc26a71693cb6f73c9a # Parent 0ec0edfcb752f38ab0e6120ccea8f64cfcc7ae00 Exclude "." from tarballs diff -r 0ec0edfcb752 -r 6cbf50148e87 Makefile --- a/Makefile Fri Jan 23 11:08:04 2015 +0100 +++ b/Makefile Tue Sep 13 16:27:32 2016 +0200 @@ -111,6 +111,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))