From f4ba909ba4bb3842017438d9f3eaa3a93ded3d83 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Fri, 8 Nov 2013 18:21:34 +0100 Subject: Fix MANIFEST.in - remove trailing / on the doc directory This caused Python 2.7 sdist to not include the files listed in the recursive-include statement. Signed-off-by: David Sommerseth --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 94c1b6d..82560a8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include COPYING MANIFEST.in rteval-cmd -recursive-include doc/ *.? *.txt +recursive-include doc *.? *.txt exclude dist/rteval dist/rteval.8.gz -- cgit