]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
open-vm-tools: Do not build the appInfo plugin on FreeBSD
authorOliver Kurth <okurth@vmware.com>
Tue, 12 Nov 2019 02:12:23 +0000 (18:12 -0800)
committerOliver Kurth <okurth@vmware.com>
Tue, 12 Nov 2019 02:12:23 +0000 (18:12 -0800)
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.

open-vm-tools/services/plugins/Makefile.am

index 4c020fa96b885ce96f672e93d47a52464db72edf..5c5e8c212cd3b8abb9994fa972e776a10cdfc7ce 100644 (file)
@@ -16,7 +16,9 @@
 ################################################################################
 
 SUBDIRS =
-SUBDIRS += appInfo
+if LINUX
+   SUBDIRS += appInfo
+endif
 if HAVE_X11
    SUBDIRS += desktopEvents
 endif