mirror of
https://github.com/golang/go
synced 2024-11-14 14:10:29 -07:00
857d4cf1a9
This change removes the necessity to have GOBIN in $PATH, and also doesn't assume that the build is being run from $GOROOT/src. This is a minimal set of necessary changes to get Go to build happily from the FreeBSD ports collection. R=rsc CC=golang-dev https://golang.org/cl/171044
17 lines
405 B
Bash
Executable File
17 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
set -e
|
|
GOBIN="${GOBIN:-$HOME/bin}"
|
|
"$GOBIN"/gomake hello fib chain
|
|
echo '*' hello >run.out
|
|
./hello >>run.out
|
|
echo '*' fib >>run.out
|
|
./fib >>run.out
|
|
echo '*' chain >>run.out
|
|
./chain >>run.out
|
|
diff run.out golden.out
|
|
"$GOBIN"/gomake clean
|