211bcc9456
The best fix is to put in an override_dh_auto_test that avoids running make test.
17 lines
385 B
Makefile
Executable file
17 lines
385 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
# Avoid using cabal, as it writes to $HOME
|
|
export CABAL=./Setup
|
|
|
|
# Do use the changelog's version number, rather than making one up.
|
|
export RELEASE_BUILD=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_test:
|
|
echo test suite currently disabled until haskell-tasty is out of NEW
|
|
|
|
# Not intended for use by anyone except the author.
|
|
announcedir:
|
|
@echo ${HOME}/src/git-annex/doc/news
|