Skip to content

Commit

Permalink
fix: Makefile, wrong package path for test/benchmark targets
Browse files Browse the repository at this point in the history
  • Loading branch information
equ1n0x committed May 24, 2024
1 parent 3bd8f28 commit 9b4675b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ endif
endif

PACKAGES := $(shell go list ./... | grep -v '/vendor/' | grep -v '/crypto/ed25519/chainkd' | grep -v '/mining/tensority')
PACKAGES += 'ey/mining/tensority/go_algorithm'
PACKAGES += 'core/mining/tensority/go_algorithm'

BUILD_FLAGS := -ldflags "-X ey/version.GitCommit=`git rev-parse HEAD`"
BUILD_FLAGS := -ldflags "-X core/version.GitCommit=`git rev-parse HEAD`"

#MINER_BINARY32 := miner-$(GOOS)_386
MINER_BINARY64 := miner-$(GOOS)_amd64
Expand Down

0 comments on commit 9b4675b

Please sign in to comment.