From: Oliver Kurth Date: Tue, 12 Nov 2019 02:12:23 +0000 (-0800) Subject: open-vm-tools: Do not build the appInfo plugin on FreeBSD X-Git-Tag: stable-11.1.0~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=976cce8fdc026a490745b1cc1db57f5ae3262cda;p=thirdparty%2Fopen-vm-tools.git open-vm-tools: Do not build the appInfo plugin on FreeBSD The appInfo plugin is supported only on Linux and Windows guests. Modify the bora-vmsoft/install/Source/services/plugins/Makefile.am to only include appInfo in the build if OVT is being built for a Linux guest. --- diff --git a/open-vm-tools/services/plugins/Makefile.am b/open-vm-tools/services/plugins/Makefile.am index 4c020fa96..5c5e8c212 100644 --- a/open-vm-tools/services/plugins/Makefile.am +++ b/open-vm-tools/services/plugins/Makefile.am @@ -16,7 +16,9 @@ ################################################################################ SUBDIRS = -SUBDIRS += appInfo +if LINUX + SUBDIRS += appInfo +endif if HAVE_X11 SUBDIRS += desktopEvents endif