diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-12-02 18:22:56 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-12-02 18:22:56 +0100 |
commit | 1e707e44bb308f01630ba0b52df9afc8ad678508 (patch) | |
tree | 1af4979ed5f5c006dca8e1fe7e985d31b8fd2189 | |
parent | 4e5f5075b441b6de2231d311073b0568bf80adda (diff) | |
download | zsh-1e707e44bb308f01630ba0b52df9afc8ad678508.tar.gz zsh-1e707e44bb308f01630ba0b52df9afc8ad678508.zip |
Fix one test-suite failure on static builds due to non-existent $HOME
Thanks to Bart Schaefer and Peter Stephenson for spotting the cause.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 92c57d157..80ff7a058 100755 --- a/debian/rules +++ b/debian/rules @@ -75,7 +75,7 @@ configure-stamp: configure configure-static-stamp: configure dh_testdir - mkdir obj-static + mkdir -p obj-static/testhome dh_auto_configure -B obj-static -- $(CONFIGFLAGS) $(STATICFLAGS) # cp debian/static.conf obj-static/Src/mymods.conf sed -i -e 's/files.mdd link=no/files.mdd link=static/;s/stat.mdd link=no/stat.mdd link=static/' \ |