Nassty / x-go-binding

Automatically exported from code.google.com/p/x-go-binding
Other
0 stars 0 forks source link

Makefile includes obseleted Make.$(GOARCH) when building manually (without goinstall or gomake) #4

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Clone the source
2. Ensure the Go tree is fully updated
3. run 'make' in the source directory

What is the expected output? What do you see instead?
expected: build completes successfully
actual: build fails with 'Makefile:5: /home/sp/injections/go/src/Make.amd64: No 
such file or directory'

What version of the product are you using? On what operating system?
Git revision 41a04f6ccbac83590d96d4ddf0761f5eef761f99; Gentoo Linux amd64

Please provide any additional information below.
According to http://golang.org/doc/devel/release.html, as of 2010-09-06, 
Make.amd64, Make.386, and Make.arm have been deleted and replaced by Make.inc; 
to fix, simply replace "include $(GOROOT)/src/Make.$(GOARCH)"  on line 5 of the 
Makefile with "include $(GOROOT)/src/Make.inc"

Original issue reported on code.google.com by awpritch...@gmail.com on 11 Oct 2010 at 3:05