summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2014-08-19 17:34:29 -0400
committerJoey Hess2014-08-19 17:34:29 -0400
commit845877a44a91e3c7bf0878887f2d8f152d9f17b1 (patch)
treea375375548609d41c9b725d855062caf945e92c6
parent7e069973f809c81b7e0ad1c3c7636aa46d33b4bb (diff)
parent6f8f0c1c6bb7d79889bfb617d9c89cec6a38188b (diff)
Merge branch 'joeyconfig'
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6a4ba4d1..9185099c 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,8 @@ install:
install -d $(DESTDIR)/usr/bin $(DESTDIR)/usr/src/propellor
install -s dist/build/propellor/propellor $(DESTDIR)/usr/bin/propellor
mkdir -p dist/gittmp
- $(CABAL) sdist | (cd dist/gittmp && tar x --strip-components=1)
+ $(CABAL) sdist
+ cat dist/propellor-*.tar.gz | (cd dist/gittmp && tar zx --strip-components=1)
# cabal sdist does not preserve symlinks, so copy over file
cd dist/gittmp && for f in $$(find -type f); do rm -f $$f; cp -a ../../$$f $$f; done
cd dist/gittmp && git init && \