aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-05-01 21:41:32 +0000
committerkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2009-05-01 21:41:32 +0000
commit2fd1208b34c2022e8f7768d5187bdad12c98d032 (patch)
tree9d319b3415c86df2d228770c59f77831422222f7 /autogen.sh
parent2cdba5baeeac45b8daf9367b6cd7cb7460b00775 (diff)
downloadprotobuf-2fd1208b34c2022e8f7768d5187bdad12c98d032.tar.gz
protobuf-2fd1208b34c2022e8f7768d5187bdad12c98d032.tar.bz2
protobuf-2fd1208b34c2022e8f7768d5187bdad12c98d032.zip
Hopefully make autogen.sh run on solaris.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index d93616e9..ab1e0667 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,7 +5,7 @@
# are automatically generated.
# Check that we're being run from the right directory.
-if test ! -e src/google/protobuf/stubs/common.h; then
+if test ! -f src/google/protobuf/stubs/common.h; then
cat >&2 << __EOF__
Could not find source code. Make sure you are running this script from the
root of the distribution tree.
@@ -13,7 +13,7 @@ __EOF__
exit 1
fi
-if test ! -e gtest; then
+if test ! -d gtest; then
echo "gtest bundle not present. Downloading gtest-1.3.0 automatically." >&2
set -ex
curl http://googletest.googlecode.com/files/gtest-1.3.0.tar.bz2 | tar jx