summaryrefslogtreecommitdiff
path: root/src/clean.bash
diff options
context:
space:
mode:
authorDevon H. O'Dell <devon.odell@gmail.com>2009-11-14 15:29:09 -0800
committerDevon H. O'Dell <devon.odell@gmail.com>2009-11-14 15:29:09 -0800
commit8afa8d37d60daa4fb2f7042b32d6e7f1450b1491 (patch)
tree02f1e1d4096a12f5c473e1de40abbd07d8b3e018 /src/clean.bash
parent69f78c9e655c12d61b4440a5caebd26bcbdd679d (diff)
downloadgo-8afa8d37d60daa4fb2f7042b32d6e7f1450b1491.tar.gz
Build changes to support work on the BSDs.
This does still contain some FreeBSD-specific bits, but it's a pain to do partial diffs. R=rsc http://codereview.appspot.com/152138 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/clean.bash')
-rwxr-xr-xsrc/clean.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clean.bash b/src/clean.bash
index b9012ea04..411321b55 100755
--- a/src/clean.bash
+++ b/src/clean.bash
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# Copyright 2009 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.
@@ -13,6 +13,6 @@ do(
if test -f clean.bash; then
bash clean.bash
else
- make clean
+ gomake clean
fi
)done