ruledirprefix="$sysconfdir"
if test "$enable_suricata_update" = "yes"; then
- AC_CHECK_FILE([$srcdir/suricata-update/setup.py], [
- have_suricata_update="yes"], [])
+ if test -f "$srcdir/suricata-update/setup.py"; then
+ have_suricata_update="yes"
+ fi
fi
if test "$have_suricata_update" = "yes"; then
AC_SUBST([RUSTUP_HOME_PATH], [$rustup_home_path])
AC_SUBST([rustup_home])
- if test "x$cross_compiling" != "xyes"; then
- AC_CHECK_FILES([$srcdir/rust/vendor], [have_rust_vendor="yes"])
- else
- AS_IF([test -d "$srcdir/rust/vendor"], have_rust_vendor="yes", [])
+ if test -f "$srcdir/rust/vendor"; then
+ have_rust_vendor="yes"
fi
if test "x$have_rust_vendor" = "xyes"; then