From 402520cc08a66762a3683dfd11261f004fa42cb8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Elio=20=27Flameeyes=27=20Petten=C3=B2?= Date: Fri, 7 Aug 2009 02:52:49 +0200 Subject: [PATCH] Change hook handling to be more portable. --- Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0aa8c071a..5807cbbeb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,6 +58,9 @@ doc-sync: rsync -av --delete libudev/docs/html/ master.kernel.org:/pub/linux/utils/kernel/hotplug/libudev/ rsync -av --delete extras/gudev/docs/html/ master.kernel.org:/pub/linux/utils/kernel/hotplug/gudev/ +INSTALL_EXEC_HOOKS = libudev-install-move-hook +UNINSTALL_EXEC_HOOKS = libudev-uninstall-move-hook + include_HEADERS = libudev/libudev.h # ------------------------------------------------------------------------------ @@ -267,6 +270,8 @@ libudev_libudev_private_la_LIBADD += \ endif if ENABLE_EXTRAS +INSTALL_EXEC_HOOKS += udevacl-install-hook + dist_udevrules_DATA += \ rules/rules.d/75-net-description.rules \ rules/rules.d/75-tty-description.rules \ @@ -282,7 +287,6 @@ libexec_PROGRAMS += \ extras/usb-db/pci-db \ extras/modem-modeswitch/modem-modeswitch -install-exec-hook: udevacl-install-hook SUBDIRS += \ extras/keymap \ @@ -318,9 +322,9 @@ EXTRA_DIST += \ # ------------------------------------------------------------------------------ # Install and uninstall hooks # ------------------------------------------------------------------------------ -install-exec-hook: libudev-install-move-hook +install-exec-hook: $(INSTALL_EXEC_HOOKS) -uninstall-hook: libudev-uninstall-move-hook +uninstall-hook: $(UNINSTALL_EXEC_HOOKS) # move lib from $(libdir) to $(rootlib_execdir) and update devel link, if needed libudev-install-move-hook: -- 2.30.2