]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Source file changes not directly applicable to open-vm-tools.
authorKaty Feng <fkaty@vmware.com>
Fri, 23 Dec 2022 00:25:50 +0000 (16:25 -0800)
committerKaty Feng <fkaty@vmware.com>
Fri, 23 Dec 2022 00:25:50 +0000 (16:25 -0800)
Minor cleanup in a couple of Makefile.am files.

open-vm-tools/configure.ac
open-vm-tools/lib/Makefile.am
open-vm-tools/services/plugins/Makefile.am
open-vm-tools/tests/Makefile.am

index 4d268f6457a988c84d2b28417bc5b1b1631c60b1..5c35356e659bf02330f0fcd5f826b562831e0575 100644 (file)
@@ -1939,6 +1939,10 @@ AC_CONFIG_FILES([                      \
    libappmonitor/appmonitor.pc         \
 ])
 
+
+
+
+
 ###
 ### Output
 ###
index 523e7231750f6cbbc0be2b75603ce9afaef401c4..ecbab81a7e30a89947c1d88723bee4a418dd6db9 100644 (file)
@@ -1,5 +1,5 @@
 ################################################################################
-### Copyright (c) 2007-2016,2020-2021 VMware, Inc.  All rights reserved.
+### Copyright (c) 2007-2016,2020-2022 VMware, Inc.  All rights reserved.
 ###
 ### This program is free software; you can redistribute it and/or modify
 ### it under the terms of version 2 of the GNU General Public License as
@@ -77,3 +77,5 @@ SUBDIRS += vmCheck
 SUBDIRS += vmSignal
 SUBDIRS += wiper
 SUBDIRS += xdg
+
+
index 9437f7e9a924fc339a14961479c6848910fc89b8..ef57c3fb2d494efee0c618f6425933030138b114 100644 (file)
@@ -1,5 +1,5 @@
 ################################################################################
-### Copyright (c) 2009-2021 VMware, Inc.  All rights reserved.
+### Copyright (c) 2009-2022 VMware, Inc.  All rights reserved.
 ###
 ### This program is free software; you can redistribute it and/or modify
 ### it under the terms of version 2 of the GNU General Public License as
@@ -55,15 +55,20 @@ SUBDIRS += timeSync
 SUBDIRS += vix
 SUBDIRS += vmbackup
 
+
 #
 # plugin_LTLIBRARIES causes both .la and .so files to be installed to the
 # plugin directories. Clean up the .la files and keep just the shared
-# libraries around. Sometimes, even though we're passing "-shared" to
+# libraries around. Sometimes, even though we are passing "-shared" to
 # libtool, .a files are also generated, so clean up those too.
 #
+
+STATICLIBS = *.a
+LTLIBS = *.la
+
 install-exec-local:
-       rm -f $(DESTDIR)$(VMSVC_PLUGIN_INSTALLDIR)/*.a
-       rm -f $(DESTDIR)$(VMSVC_PLUGIN_INSTALLDIR)/*.la
-       rm -f $(DESTDIR)$(VMUSR_PLUGIN_INSTALLDIR)/*.a
-       rm -f $(DESTDIR)$(VMUSR_PLUGIN_INSTALLDIR)/*.la
+       rm -f $(DESTDIR)$(VMSVC_PLUGIN_INSTALLDIR)/$(STATICLIBS)
+       rm -f $(DESTDIR)$(VMSVC_PLUGIN_INSTALLDIR)/$(LTLIBS)
+       rm -f $(DESTDIR)$(VMUSR_PLUGIN_INSTALLDIR)/$(STATICLIBS)
+       rm -f $(DESTDIR)$(VMUSR_PLUGIN_INSTALLDIR)/$(LTLIBS)
 
index a751ec75f52700bd9fab586bc3aa7e3a608202ec..add08fd0f9e53e196bc74d5c3ec9b244f8aea04d 100644 (file)
@@ -1,5 +1,5 @@
 ################################################################################
-### Copyright (C) 2009-2016 VMware, Inc.  All rights reserved.
+### Copyright (c) 2009-2016,2022 VMware, Inc.  All rights reserved.
 ###
 ### This program is free software; you can redistribute it and/or modify
 ### it under the terms of version 2 of the GNU General Public License as
@@ -21,7 +21,12 @@ SUBDIRS += testDebug
 SUBDIRS += testPlugin
 SUBDIRS += testVmblock
 
-install-exec-local:
-       rm -f $(DESTDIR)$(TEST_PLUGIN_INSTALLDIR)/*.a
-       rm -f $(DESTDIR)$(TEST_PLUGIN_INSTALLDIR)/*.la
 
+
+
+STATICLIBS = *.a
+LTLIBS     = *.la
+
+install-exec-local:
+       rm -f $(DESTDIR)$(TEST_PLUGIN_INSTALLDIR)/$(STATICLIBS)
+       rm -f $(DESTDIR)$(TEST_PLUGIN_INSTALLDIR)/$(LTLIBS)