Skip to content

Commit

Permalink
doc: update README paths
Browse files Browse the repository at this point in the history
The regex crate uses Cargo workspaces now, so point to the proper target
directory.
  • Loading branch information
BurntSushi committed May 16, 2018
1 parent 4e09580 commit 578414c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -28,8 +28,8 @@ do it:
```
$ git clone git://github.com/rust-lang-nursery/regex
$ cargo build --release --manifest-path ./regex/regex-capi/Cargo.toml
$ export CGO_LDFLAGS="-L$(pwd)/regex/regex-capi/target/release"
$ export LD_LIBRARY_PATH="$(pwd)/regex/regex-capi/target/release"
$ export CGO_LDFLAGS="-L$(pwd)/regex/target/release"
$ export LD_LIBRARY_PATH="$(pwd)/regex/target/release"
$ go get -t github.com/BurntSushi/rure-go
$ go test github.com/BurntSushi/rure-go
```
Expand Down

0 comments on commit 578414c

Please sign in to comment.