From: John Wolfe Date: Fri, 11 Sep 2020 19:11:05 +0000 (-0700) Subject: Changing permissions of tools configuration example file. X-Git-Tag: stable-11.2.0~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=098d213d1db4b4bb22823036cca7f3bc6f06af71;p=thirdparty%2Fopen-vm-tools.git Changing permissions of tools configuration example file. Also made a small change to another makefile for more consistency in style. --- diff --git a/open-vm-tools/Makefile.am b/open-vm-tools/Makefile.am index 84a19fa74..3c72c39ac 100644 --- a/open-vm-tools/Makefile.am +++ b/open-vm-tools/Makefile.am @@ -1,5 +1,5 @@ ################################################################################ -### Copyright (C) 2007-2019 VMware, Inc. All rights reserved. +### Copyright (C) 2007-2020 VMware, Inc. All rights reserved. ### ### Top-level Makefile for building the VMware OSS Tools. ### @@ -71,5 +71,5 @@ endif install-data-local: $(INSTALL) -d $(DESTDIR)/etc/vmware-tools/ - $(INSTALL) $(srcdir)/tools.conf $(DESTDIR)/etc/vmware-tools/tools.conf.example + $(INSTALL) -m 644 $(srcdir)/tools.conf $(DESTDIR)/etc/vmware-tools/tools.conf.example diff --git a/open-vm-tools/modules/Makefile.am b/open-vm-tools/modules/Makefile.am index 1bf871996..e659174e7 100644 --- a/open-vm-tools/modules/Makefile.am +++ b/open-vm-tools/modules/Makefile.am @@ -1,5 +1,5 @@ ################################################################################ -### Copyright (C) 2008-2018 VMware, Inc. All rights reserved. +### Copyright (C) 2008-2018,2020 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 @@ -67,7 +67,7 @@ endif if FREEBSD for MOD in $(MODULES); do \ $(INSTALL) -d $(DESTDIR)$(MODULES_DIR); \ - $(INSTALL) -m644 $(modulesrc)/$(MODULES_OS)/$$MOD.ko \ + $(INSTALL) -m 644 $(modulesrc)/$(MODULES_OS)/$$MOD.ko \ $(DESTDIR)$(MODULES_DIR); \ done endif