mirror of
https://github.com/golang/go
synced 2024-11-06 02:26:17 -07:00
f08acae76e
Also, I synced the rc files with changes that have been made to make.bash, etc. R=seed, rminnich, r CC=golang-dev https://golang.org/cl/7389049
17 lines
385 B
Bash
Executable File
17 lines
385 B
Bash
Executable File
#!/bin/rc -e
|
|
# Copyright 2012 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.
|
|
|
|
rfork n
|
|
|
|
if(! test -f make.rc){
|
|
echo 'all.rc must be run from $GOROOT/src' >[1=2]
|
|
exit wrongdir
|
|
}
|
|
|
|
. ./make.rc --no-banner
|
|
bind -b $GOROOT/bin /bin
|
|
./run.rc --no-rebuild
|
|
$GOTOOLDIR/dist banner # print build info
|