]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Stylistic changes to the serviceDiscovery plugin Makefile.
authorJohn Wolfe <jwolfe@vmware.com>
Fri, 26 Mar 2021 03:21:17 +0000 (20:21 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Fri, 26 Mar 2021 03:21:17 +0000 (20:21 -0700)
Replaced all occurrences of "$(libdir)/open-vm-tools" with "$(pkglibdir)".
Split the makefile command lines to fit within 80 columns.

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

index f16964c24e5edc0eb930c587fc688cd59e953421..3cfab93a716204bbcb9769816c1bfca57fead7dc 100644 (file)
@@ -1,5 +1,5 @@
 ################################################################################
-### Copyright (C) 2020 VMware, Inc.  All rights reserved.
+### Copyright (c) 2020-2021 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
@@ -37,10 +37,14 @@ libserviceDiscovery_la_SOURCES += serviceDiscoveryPosix.c
 libserviceDiscovery_la_SOURCES += serviceDiscoveryInt.h
 
 install-data-local:
-       $(INSTALL) -d $(DESTDIR)/$(libdir)/open-vm-tools/serviceDiscovery/scripts/
-       $(INSTALL) -m 755 $(srcdir)/get-connection-info.sh $(DESTDIR)/$(libdir)/open-vm-tools/serviceDiscovery/scripts/
-       $(INSTALL) -m 755 $(srcdir)/get-listening-process-info.sh $(DESTDIR)/$(libdir)/open-vm-tools/serviceDiscovery/scripts/
-       $(INSTALL) -m 755 $(srcdir)/get-listening-process-perf-metrics.sh $(DESTDIR)/$(libdir)/open-vm-tools/serviceDiscovery/scripts/
-       $(INSTALL) -m 755 $(srcdir)/get-versions.sh $(DESTDIR)/$(libdir)/open-vm-tools/serviceDiscovery/scripts/
+       $(INSTALL) -d $(DESTDIR)/$(pkglibdir)/serviceDiscovery/scripts/
+       $(INSTALL) -m 755 $(srcdir)/get-connection-info.sh \
+                         $(DESTDIR)/$(pkglibdir)/serviceDiscovery/scripts/
+       $(INSTALL) -m 755 $(srcdir)/get-listening-process-info.sh \
+                         $(DESTDIR)/$(pkglibdir)/serviceDiscovery/scripts/
+       $(INSTALL) -m 755 $(srcdir)/get-listening-process-perf-metrics.sh \
+                         $(DESTDIR)/$(pkglibdir)/serviceDiscovery/scripts/
+       $(INSTALL) -m 755 $(srcdir)/get-versions.sh \
+                         $(DESTDIR)/$(pkglibdir)/serviceDiscovery/scripts/