summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-07-02 17:10:43 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-07-02 17:10:43 -0400
commit84a9fee6f2afaa260054ef42da3b08ca0dddb130 (patch)
treee9959b8a27887a685de29e4c98a7bd25ed83241e /Makefile
parent686d08718b84a70d4b36039fdf595cc4c0fa176a (diff)
fix sdist to include symlinks, without which it doesn't build
oops.. will upload a new minor version to hackage
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index afd2de99e..786fd919e 100644
--- a/Makefile
+++ b/Makefile
@@ -91,7 +91,7 @@ clean:
# generate a file list there.
sdist: clean
@if [ ! -e git-annex.cabal.orig ]; then cp git-annex.cabal git-annex.cabal.orig; fi
- @sed -e "s!\(Extra-Source-Files: \).*!\1$(shell find . -name .git -prune -or -not -name \\*.orig -type f -print)!i" < git-annex.cabal.orig > git-annex.cabal
+ @sed -e "s!\(Extra-Source-Files: \).*!\1$(shell find . -name .git -prune -or -not -name \\*.orig -not -type d -print)!i" < git-annex.cabal.orig > git-annex.cabal
@cabal sdist
@mv git-annex.cabal.orig git-annex.cabal