]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/debug: fix build (missing Makefile)
authorRob Pike <r@golang.org>
Wed, 19 Jan 2011 20:36:52 +0000 (12:36 -0800)
committerRob Pike <r@golang.org>
Wed, 19 Jan 2011 20:36:52 +0000 (12:36 -0800)
Why does this happen so often?

R=rsc
CC=golang-dev
https://golang.org/cl/4067042

src/pkg/runtime/debug/Makefile [new file with mode: 0644]

diff --git a/src/pkg/runtime/debug/Makefile b/src/pkg/runtime/debug/Makefile
new file mode 100644 (file)
index 0000000..885f66a
--- /dev/null
@@ -0,0 +1,11 @@
+# Copyright 2011 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.
+
+include ../../../Make.inc
+
+TARG=runtime/debug
+GOFILES=\
+       stack.go\
+
+include ../../../Make.pkg