[build-support] fix on enable_devtoolset_inner.sh, take two

Prior to this fix, when configuring a build via cmake as described at
https://kudu.apache.org/docs/installation.html#build_from_source,
the following error was output (at least by bash 4.1.2):

  build-support/enable_devtoolset_inner.sh: line 28: [: too many arguments

This is a follow-up to 719418a60235a5155efe95c37e9fc6e319f41e0c.

Change-Id: I8de79a99a5386e47e968ca9e8f6939159b06fbda
Reviewed-on: http://gerrit.cloudera.org:8080/14825
Tested-by: Kudu Jenkins
Reviewed-by: Andrew Wong <awong@cloudera.com>
diff --git a/build-support/enable_devtoolset_inner.sh b/build-support/enable_devtoolset_inner.sh
index 5866ab2..0b0ba91 100755
--- a/build-support/enable_devtoolset_inner.sh
+++ b/build-support/enable_devtoolset_inner.sh
@@ -25,7 +25,7 @@
 
 # If ccache was on the PATH and CC/CXX have not already been set, set them to
 # devtoolset-3 specific ccache helper scripts (thus enabling ccache).
-if which ccache > /dev/null 2>&1 && [ -a ! "$CC" -a ! "$CXX" ]; then
+if which ccache > /dev/null 2>&1 && [ ! "$CC" -a ! "$CXX" ]; then
   ROOT=$(cd $(dirname "$BASH_SOURCE") ; pwd)
   export CC="$ROOT/ccache-devtoolset-3/cc"
   export CXX="$ROOT/ccache-devtoolset-3/c++"