Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit 265d633

Browse files
committed
Merge pull request #324 from waltarix/master
Improve removing the library path
2 parents 4687cbb + 0be3cf7 commit 265d633

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: go
22

33
go:
44
- 1.4.1
5-
- 1.3.3
65

76
# let us have pretty experimental Docker-based Travis workers
87
sudo: false

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ and `make` installed.
5454

5555
### Install from source
5656

57-
You need to have the [Go compiler (v1.3 or higher)](http://golang.org) installed, and `$GOPATH`
57+
You need to have the [Go compiler (v1.4 or higher)](http://golang.org) installed, and `$GOPATH`
5858
[properly setup](http://golang.org/doc/code.html#GOPATH). Then run
5959

6060
go get github.com/boot2docker/boot2docker-cli
@@ -77,7 +77,7 @@ You can cross compile to OS X, Windows, and Linux. For that you need to first
7777
[make your Go compiler ready for cross compiling to the target
7878
platforms](http://stackoverflow.com/questions/12168873/cross-compile-go-on-osx).
7979

80-
Please make sure you build with golang v1.3 or later - it is required for
80+
Please make sure you build with golang v1.4 or later - it is required for
8181
`boot2docker download` to work on OS X.
8282

8383
We provide a Makefile to make the process a bit easier.

virtualbox/vbm.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
func init() {
1919
if runtime.GOOS == "darwin" {
2020
// remove DYLD_LIBRARY_PATH and LD_LIBRARY_PATH as they break VBoxManage on OSX
21-
os.Setenv("DYLD_LIBRARY_PATH", "")
22-
os.Setenv("LD_LIBRARY_PATH", "")
21+
os.Unsetenv("DYLD_LIBRARY_PATH")
22+
os.Unsetenv("LD_LIBRARY_PATH")
2323
}
2424
}
2525

0 commit comments

Comments
 (0)