]> Cypherpunks repositories - gostls13.git/commitdiff
fix arm build on darwin leopard
authorRuss Cox <rsc@golang.org>
Thu, 30 Sep 2010 18:48:33 +0000 (14:48 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 30 Sep 2010 18:48:33 +0000 (14:48 -0400)
TBR=r
CC=golang-dev
https://golang.org/cl/2333043

src/libcgo/Makefile

index 365de0f8d0836c9c9067ccefa096c07d4dc8e3a6..62f4befaae8f59025b5b72f0ca6c1579658cbfc7 100755 (executable)
@@ -7,7 +7,13 @@ ifeq ($(GOOS),nacl)
 # Nothing for NaCl
 all clean install:
        @true
-       
+
+else ifeq ($(GOARCH),arm)
+
+# Nothing for NaCl
+all clean install:
+       @true
+
 else
 include ../Make.inc