diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 19:26:18 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-06-15 19:26:18 -0400 |
commit | 99adee24d96f27f08fecc0a56b3c26c688045290 (patch) | |
tree | b10cab97ee76c6e5876cf65242ad3e01d08c88c6 | |
parent | dad3de8e9835a11b1df9e718eef3faa50459ccbb (diff) |
oops, fix the last commit
-rw-r--r-- | proto/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/Makefile b/proto/Makefile index 4b81a28..98f0f4a 100644 --- a/proto/Makefile +++ b/proto/Makefile @@ -33,7 +33,7 @@ $(srcdir)/requests.txt: $(srcdir)/nslcd_h.go $(srcdir)/Makefile _nslcd.srcdir := $(srcdir) _nslcd.rel=$(patsubst $(abspath $(_nslcd.srcdir))/%,./%,$(abspath $1)) $(srcdir)/%.go: $(srcdir)/%.go.sh - cd $(srcdir) && $(call _nslcd.rel,$^) > $(call _nslcd.rel,$@) + cd $(_nslcd.srcdir) && $(call _nslcd.rel,$^) > $(call _nslcd.rel,$@) $(srcdir)/server/interface_backend.go: $(srcdir)/requests.txt $(srcdir)/server/func_handlerequest.go: $(srcdir)/requests.txt |