Skip to content

Commit

Permalink
Merge pull request #2066 from ipfs/makefile-ldflags
Browse files Browse the repository at this point in the history
makefile: add -ldflags to install and nofuse tasks
  • Loading branch information
jbenet committed Dec 14, 2015
2 parents f5c8aea + c38efda commit fbb607d
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 @@ -23,13 +23,13 @@ vendor: godep
godep save -r ./...

install:
cd cmd/ipfs && go install
cd cmd/ipfs && go install -ldflags=$(ldflags)

build:
cd cmd/ipfs && go build -i -ldflags=$(ldflags)

nofuse:
cd cmd/ipfs && go install -tags nofuse
cd cmd/ipfs && go install -tags nofuse -ldflags=$(ldflags)

##############################################################
# tests targets
Expand Down

0 comments on commit fbb607d

Please sign in to comment.