From: Jason Ish Date: Tue, 10 Dec 2019 22:40:35 +0000 (-0600) Subject: configure: fix test -f for rust/vendor, should be -e X-Git-Tag: suricata-5.0.1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ca7dcd8d8339201b8d99d96302dc6dd0c070dc7;p=thirdparty%2Fsuricata.git configure: fix test -f for rust/vendor, should be -e Introduced with commit: c08ec8d8b27280e2bcb066c9caa24da97e0419ee --- diff --git a/configure.ac b/configure.ac index 4497c18ac3..9791d982f0 100644 --- a/configure.ac +++ b/configure.ac @@ -2439,7 +2439,7 @@ fi AC_SUBST([RUSTUP_HOME_PATH], [$rustup_home_path]) AC_SUBST([rustup_home]) - if test -f "$srcdir/rust/vendor"; then + if test -e "$srcdir/rust/vendor"; then have_rust_vendor="yes" fi