diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-07-12 17:04:51 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-07-12 17:04:51 -0400 |
commit | 99fd58d7b27258b90c533598314450d790a80892 (patch) | |
tree | a352df31dc93a474c3cab91b05375732055750c6 | |
parent | 2596f24a996ec9d16ce125add1794c23af828b43 (diff) |
better way of finding stack built executable
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ tmp/configure-stamp: Build/TestConfig.hs Build/Configure.hs git-annex: tmp/configure-stamp $(BUILDER) build $(BUILDEROPTIONS) if [ "$(BUILDER)" = stack ]; then \ - ln -sf $$(find .stack-work/ -name git-annex -type f | grep build/git-annex/git-annex | tail -n 1) git-annex; \ + ln -sf $$(stack path --dist-dir)/build/git-annex/git-annex git-annex; \ else \ ln -sf dist/build/git-annex/git-annex git-annex; \ fi |