]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Restrict Enable Salt Minion feature to x86_64 systems.
authorJohn Wolfe <jwolfe@vmware.com>
Thu, 20 Jan 2022 19:40:15 +0000 (11:40 -0800)
committerJohn Wolfe <jwolfe@vmware.com>
Thu, 20 Jan 2022 19:40:15 +0000 (11:40 -0800)
Currently Salt Minion is available only for x86_64 systems.  Update
configure.ac to exclude ENABLE_SALTMINION from ARM and 32-bit systems.

open-vm-tools/configure.ac

index 2c4f097f9541937ef79bad156db621d5866ba3ed..3675d484a9e454b62fc38ae9cadc88843a3477f4 100644 (file)
@@ -1702,7 +1702,7 @@ AM_CONDITIONAL(ENABLE_VMWGFXCTRL, test "x$enable_vmwgfxctrl" = "xyes")
 AM_CONDITIONAL(VGAUTH_USE_CXX, test "$with_icu" = "yes" -o "$use_xmlsec1" != "yes")
 AM_CONDITIONAL(ENABLE_LIBAPPMONITOR, test "$enable_libappmonitor" = "yes")
 AM_CONDITIONAL(ENABLE_SDMP, test "$enable_servicediscovery" = "yes")
-AM_CONDITIONAL(ENABLE_SALTMINION, test "$enable_saltminion" = "yes")
+AM_CONDITIONAL(ENABLE_SALTMINION, test "$enable_saltminion" = "yes" -a \( "$arch" = "x64" \) )
 
 if test "$have_xsm" != "yes"; then
 AC_DEFINE([NO_XSM], 1, [])