Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
a1d95dea
Commit
a1d95dea
authored
Feb 24, 2011
by
Dave Cheney
Committed by
Andrew Gerrand
Feb 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: remove unused nacl conditional from make.bash
R=golang-dev, adg CC=golang-dev
https://golang.org/cl/4217042
parent
162d510d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
23 deletions
+18
-23
src/make.bash
src/make.bash
+18
-23
No files found.
src/make.bash
View file @
a1d95dea
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment