From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Krause Date: Mon, 17 Oct 2005 22:02:05 +0000 Subject: small install problem (udev_run_hotplugd) Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org Hi, I've found a small problem with the Makefile in /extras/run_directory/Makefile: It installs udevd_run_devd as udev_run_devd _and_ as udev_run_hotplugd. This means, that the correct binary (udev_run_hotplugd) is built but never installed. Because the wrong udev_run_hotplugd is installed, the "hotplug compatibility layer" doesn't work anymore and no scripts in /etc/hotplug/default/ are executed. In my case hald did not work... This small patch solves the problem: diff -uNr udev-070.old/extras/run_directory/Makefile udev-070/extras/run_directory/Makefile --- udev-070.old/extras/run_directory/Makefile 2005-09-15 01:19:07.000000000 +0200 +++ udev-070/extras/run_directory/Makefile 2005-10-17 23:29:41.000000000 +0200 @@ -47,7 +47,7 @@ install-bin: all $(INSTALL_PROGRAM) udev_run_devd $(DESTDIR)$(sbindir)/udev_run_devd - $(INSTALL_PROGRAM) udev_run_devd $(DESTDIR)$(sbindir)/udev_run_hotplugd + $(INSTALL_PROGRAM) udev_run_hotplugd $(DESTDIR)$(sbindir)/udev_run_hotplugd .PHONY: install-bin uninstall-bin: Best regards, Christian ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net Linux-hotplug-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel