Эх сурвалжийг харах

Hopefully make autogen.sh run on solaris.

kenton@google.com 16 жил өмнө
parent
commit
2fd1208b34
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      autogen.sh

+ 2 - 2
autogen.sh

@@ -5,7 +5,7 @@
 # are automatically generated.
 # are automatically generated.
 
 
 # Check that we're being run from the right directory.
 # 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__
   cat >&2 << __EOF__
 Could not find source code.  Make sure you are running this script from the
 Could not find source code.  Make sure you are running this script from the
 root of the distribution tree.
 root of the distribution tree.
@@ -13,7 +13,7 @@ __EOF__
   exit 1
   exit 1
 fi
 fi
 
 
-if test ! -e gtest; then
+if test ! -d gtest; then
   echo "gtest bundle not present.  Downloading gtest-1.3.0 automatically." >&2
   echo "gtest bundle not present.  Downloading gtest-1.3.0 automatically." >&2
   set -ex
   set -ex
   curl http://googletest.googlecode.com/files/gtest-1.3.0.tar.bz2 | tar jx
   curl http://googletest.googlecode.com/files/gtest-1.3.0.tar.bz2 | tar jx