1
0
mirror of https://github.com/golang/go synced 2024-11-20 05:44:44 -07:00

build: remove unused nacl conditional from make.bash

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/4217042
This commit is contained in:
Dave Cheney 2011-02-24 15:56:53 +11:00 committed by Andrew Gerrand
parent 162d510d7e
commit a1d95deaaa

View File

@ -61,29 +61,24 @@ bash "$GOROOT"/src/clean.bash
# pkg builds libcgo and the Go programs in cmd.
for i in lib9 libbio libmach cmd pkg
do
case "$i-$GOOS-$GOARCH" in
cmd/*-nacl-*)
;;
*)
# The ( ) here are to preserve the current directory
# for the next round despite the cd $i below.
# set -e does not apply to ( ) so we must explicitly
# test the exit status.
(
echo; echo; echo %%%% making $i %%%%; echo
cd "$GOROOT"/src/$i
case $i in
cmd)
bash make.bash
;;
pkg)
gomake install
;;
*)
gomake install
esac
) || exit 1
esac
# The ( ) here are to preserve the current directory
# for the next round despite the cd $i below.
# set -e does not apply to ( ) so we must explicitly
# test the exit status.
(
echo; echo; echo %%%% making $i %%%%; echo
cd "$GOROOT"/src/$i
case $i in
cmd)
bash make.bash
;;
pkg)
gomake install
;;
*)
gomake install
esac
) || exit 1
done
# Print post-install messages.