summaryrefslogtreecommitdiff
path: root/misc/nacl
diff options
context:
space:
mode:
authorRobert Hencke <robert.hencke@gmail.com>2011-06-21 12:02:40 -0400
committerRobert Hencke <robert.hencke@gmail.com>2011-06-21 12:02:40 -0400
commit345eaca4a2cddf76c8af8bcf8014ff89a4728b58 (patch)
treef984d20bbc7b33f87bf26371e5b037f943ccebc0 /misc/nacl
parentf7c1f9b87326e759b4569908add7aad6ced8df28 (diff)
downloadgo-345eaca4a2cddf76c8af8bcf8014ff89a4728b58.tar.gz
nacl, tiny: remove vestiges
R=golang-dev, r, rsc CC=golang-dev http://codereview.appspot.com/4635053 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'misc/nacl')
-rwxr-xr-xmisc/nacl/naclrun15
1 files changed, 0 insertions, 15 deletions
diff --git a/misc/nacl/naclrun b/misc/nacl/naclrun
deleted file mode 100755
index 1cdcf876c..000000000
--- a/misc/nacl/naclrun
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# Copyright 2010 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.
-
-# Run nacl binary in debug mode (allow file access)
-# and then grep away the chatter.
-# See ../../src/pkg/exp/nacl/README for more on
-# how to configure NaCl.
-
-nacl -d "$@" >/tmp/nacl.out.$$ 2>&1
-status=$?
-egrep -v 'DEBUG MODE ENABLED|^\[[0-9]+,' /tmp/nacl.out.$$
-rm -f /tmp/nacl.out.$$
-exit $status