diff options
| author | Joey Hess <joey@kitenet.net> | 2014-08-19 17:34:25 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-08-19 17:34:25 -0400 |
| commit | 6f8f0c1c6bb7d79889bfb617d9c89cec6a38188b (patch) | |
| tree | 3c443464daac56599b5d536853a5a8efe3443c18 | |
| parent | 7a34a1efbf9df3e964f203f0c782d4c50e6683c9 (diff) | |
beargN
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 && \ |
