]> Cypherpunks repositories - gostls13.git/commitdiff
make.bash: remove old bash version of gotest on Windows
authorAlex Brainman <alex.brainman@gmail.com>
Wed, 4 May 2011 01:16:55 +0000 (11:16 +1000)
committerAlex Brainman <alex.brainman@gmail.com>
Wed, 4 May 2011 01:16:55 +0000 (11:16 +1000)
The file is called gotest.exe now.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4444090

src/make.bash

index 79e368cb50f13bf2cf5a693a12ef82f59a6c09cf..84b9908f455f3748cec718e8238524d325165314 100755 (executable)
@@ -47,6 +47,9 @@ rm -f "$GOBIN"/gomake
 ) >"$GOBIN"/gomake
 chmod +x "$GOBIN"/gomake
 
+# TODO(brainman): delete this after 01/01/2012.
+rm -f "$GOBIN"/gotest  # remove old bash version of gotest on Windows
+
 if [ -d /selinux -a -f /selinux/booleans/allow_execstack -a -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
        if ! cat /selinux/booleans/allow_execstack | grep -c '^1 1$' >> /dev/null ; then
                echo "WARNING: the default SELinux policy on, at least, Fedora 12 breaks "