diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-06-01 10:20:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-06-01 10:20:37 +0000 |
commit | 0af91800f9807594c108bceed17531d031954363 (patch) | |
tree | ad70df327be97fb6e5da137cddfa1e4cc9d511fc /configure.in | |
parent | 3600d2f708fb9657ff505deff2999cde31632c80 (diff) | |
download | tor-0af91800f9807594c108bceed17531d031954363.tar.gz tor-0af91800f9807594c108bceed17531d031954363.zip |
r13131@catbus: nickm | 2007-06-01 06:20:29 -0400
Test for ~/.svk/local, not ~/.svk. Eschew use of test -a and test -o. Bulletproof more against odd shells.
svn:r10439
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7d062573cc..ce3e578946 100644 --- a/configure.in +++ b/configure.in @@ -274,7 +274,7 @@ AC_CHECK_HEADERS(linux/netfilter_ipv4.h, if test x$transparent = xtrue ; then transparent_ok=0 - if test x$net_if_found = x1 -a x$net_pfvar_found = x1 ; then + if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then transparent_ok=1 fi if test x$linux_netfilter_ipv4 = x1 ; then |