~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-08-03 17:04:59 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110803170459-wzd99m3567y80ila
Tags: 1:59-1
* Imported Upstream version 59
* Refresh patches to a new release
* Fix FTBFS on ARM (Closes: #634270)
* Update version.bash to work with Debian packaging and not hg
  repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        crypto/ocsp\
46
46
        crypto/openpgp\
47
47
        crypto/openpgp/armor\
 
48
        crypto/openpgp/elgamal\
48
49
        crypto/openpgp/error\
49
50
        crypto/openpgp/packet\
50
51
        crypto/openpgp/s2k\
61
62
        crypto/x509\
62
63
        crypto/x509/pkix\
63
64
        crypto/xtea\
 
65
        csv\
64
66
        debug/dwarf\
65
67
        debug/macho\
66
68
        debug/elf\
80
82
        exp/eval\
81
83
        exp/gui\
82
84
        exp/gui/x11\
 
85
        exp/regexp/syntax\
 
86
        exp/template\
83
87
        expvar\
84
88
        flag\
85
89
        fmt\
181
185
 
182
186
endif
183
187
 
 
188
ifeq ($(GOOS),plan9)
 
189
NOPLAN9BUILD=\
 
190
        crypto/tls\
 
191
        debug/proc\
 
192
        exp/gui/x11\
 
193
        expvar\
 
194
        http\
 
195
        http/cgi\
 
196
        http/fcgi\
 
197
        http/httptest\
 
198
        http/pprof\
 
199
        http/spdy\
 
200
        mail\
 
201
        mime/multipart\
 
202
        net\
 
203
        net/dict\
 
204
        net/textproto\
 
205
        netchan\
 
206
        os/signal\
 
207
        rpc\
 
208
        rpc/jsonrpc\
 
209
        smtp\
 
210
        syslog\
 
211
        websocket\
 
212
        ../cmd/godoc\
 
213
        ../cmd/goinstall\
 
214
 
 
215
DIRS:=$(filter-out $(NOPLAN9BUILD),$(DIRS))
 
216
endif
 
217
 
184
218
NOTEST+=\
185
219
        crypto\
186
220
        crypto/openpgp/error\
206
240
        ../cmd/cgo\
207
241
        ../cmd/ebnflint\
208
242
        ../cmd/godoc\
 
243
        ../cmd/goinstall\
209
244
        ../cmd/gotest\
210
 
        ../cmd/govet\
211
245
        ../cmd/goyacc\
212
246
        ../cmd/hgpatch\
213
247