diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-05-30 20:25:58 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-05-30 20:25:58 +0800 |
commit | fba0d40500aed7a700efac8e311b84a75031a408 (patch) | |
tree | 913011215a496182137b82dc86527a6189cb3c6c /Makefile | |
parent | 6d7c5863b165b3a5e6bc415d533b5a5f4d674b0c (diff) | |
download | dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar.gz dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar.bz2 dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar.lz dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar.xz dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.tar.zst dexon-bls-fba0d40500aed7a700efac8e311b84a75031a408.zip |
use pkg-config
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ test: $(TEST_EXE) @grep -v "ng=0, exception=0" result.txt; if [ $$? -eq 1 ]; then echo "all unit tests succeed"; else exit 1; fi run_go: go/bls/bls.go go/bls/bls_test.go $(BLS_LIB) $(BLS_IF_LIB) - cd go/bls && go test -tags $(GO_TAG) . + cd go/bls && env PKG_CONFIG_PATH=./ go test -tags $(GO_TAG) . # cd go/bls && go test -tags $(GO_TAG) -v . clean: |