aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/go/Makefile
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2013-04-23 17:13:07 +0200
committerGravatar David Bremner <bremner@debian.org>2013-05-03 21:21:01 -0300
commit44fe1f2c160eb333732465f051e5110adeab6b0a (patch)
tree613a98f3762cdedd3c6dc7ebcfc411ea607a30c2 /bindings/go/Makefile
parent51b073c6f27f4439b2d003df1be1177365e555fe (diff)
go: use a different goconfig package
The notmuch-addrlookup utility uses a third party library to read the notmuch configuration file. The previously used implementation at "github.com/kless/goconfig" vanished, so this patch switches to the implementation at "github.com/msbranco/goconfig". As the implementations differ at the API level, the code is updated accordingly. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings/go/Makefile')
-rw-r--r--bindings/go/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/go/Makefile b/bindings/go/Makefile
index c38f2340..1b9e7505 100644
--- a/bindings/go/Makefile
+++ b/bindings/go/Makefile
@@ -15,8 +15,8 @@ notmuch:
.PHONY: goconfig
goconfig:
- if [ ! -d src/github.com/kless/goconfig/config ]; then \
- $(GO) get github.com/kless/goconfig/config; \
+ if [ ! -d github.com/msbranco/goconfig ]; then \
+ $(GO) get github.com/msbranco/goconfig; \
fi
.PHONY: notmuch-addrlookup