From f35c9eb1624cf00f567676b1a9f32670ccbdf085 Mon Sep 17 00:00:00 2001 From: Ethan Mallove Date: Fri, 26 Oct 2007 19:46:06 +0000 Subject: [PATCH] Do not try `svk info` if the user has never done `svk depotmap --init`. This commit was SVN r16587. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index fb663a2a73..20ecd4d975 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1120,7 +1120,7 @@ check_for_svk_checkout() { is_svk_checkout=0 svk_path=`which svk 2>/dev/null` - if test -x "$svk_path" -a -d "$HOME/.svk"; then + if test -x "$svk_path" -a -d "$HOME/.svk/local"; then top_level_dir="`dirname $0`" svk info $top_level_dir >/dev/null 2>&1 if test "$?" = 0 ; then