From: Oliver Kurth Date: Fri, 15 Sep 2017 18:22:54 +0000 (-0700) Subject: open-vm-tools: use $(srcdir) in Makefile.am for udev rule X-Git-Tag: stable-10.2.0~626 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=280f7726ff8fc72df9554f411146e02c54842209;p=thirdparty%2Fopen-vm-tools.git open-vm-tools: use $(srcdir) in Makefile.am for udev rule Building in a separate directory was broken for installing the udev rule. We need to use $(srcdir) in Makefile.am, otherwise 'make install' will fail. --- diff --git a/open-vm-tools/udev/Makefile.am b/open-vm-tools/udev/Makefile.am index f74d8dc9f..68fbc3e27 100644 --- a/open-vm-tools/udev/Makefile.am +++ b/open-vm-tools/udev/Makefile.am @@ -17,5 +17,5 @@ install-data-local: $(INSTALL) -d $(DESTDIR)$(UDEVRULESDIR) - $(INSTALL) 99-vmware-scsi-udev.rules $(DESTDIR)$(UDEVRULESDIR) + $(INSTALL) $(srcdir)/99-vmware-scsi-udev.rules $(DESTDIR)$(UDEVRULESDIR)