Skip to content

Commit 8dd382c

Browse files
committed
[BUILD] Use '-R' for cp operations
-r/-R are synonomous on Linux, but OSX only supports -R. Therefore lets use the least common denominator. Change-Id: I5ccbc084e16ea39da084e04ecf3f199e56a6a563 Signed-off-by: Greg Haskins <[email protected]>
1 parent 37f44d3 commit 8dd382c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gotools/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ all: $(GOTOOLS_BIN)
3333
# Special override for protoc-gen-go since we want to use the version vendored with the project
3434
gotool.protoc-gen-go:
3535
mkdir -p $(GOPATH)/src/github.com/golang/protobuf/
36-
cp -r $(GOPATH)/src/github.com/hyperledger/fabric/vendor/github.com/golang/protobuf/ $(GOPATH)/src/github.com/golang/
36+
cp -R $(GOPATH)/src/github.com/hyperledger/fabric/vendor/github.com/golang/protobuf/ $(GOPATH)/src/github.com/golang/
3737
go install github.com/golang/protobuf/protoc-gen-go
3838
rm -rf $(GOPATH)/src/github.com/golang/protobuf
3939

0 commit comments

Comments
 (0)