From 182c9b158495b55212651ed5e57d0d486a6ba781 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 5 Jul 2009 23:56:24 +0200 Subject: build: add *exec* to the internal rootlibdir name Automake like variables with *exec* in the directory names, to decide, that it isn't *data*: http://www.gnu.org/software/hello/manual/automake/The-Two-Parts-of-Install.html#The-Two-Parts-of-Install --- libudev/Makefile.am | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libudev') diff --git a/libudev/Makefile.am b/libudev/Makefile.am index b50eac9628..3ed05a31e3 100644 --- a/libudev/Makefile.am +++ b/libudev/Makefile.am @@ -42,15 +42,15 @@ pkgconfig_DATA = \ EXTRA_DIST = \ exported_symbols -# move lib from $(libdir) to $(rootlibdir) and update devel link, if needed -install-data-hook: - if test "$(libdir)" != "$(rootlibdir)"; then \ - mkdir -p $(DESTDIR)$(rootlibdir) && \ +# move lib from $(libdir) to $(rootlib_execdir) and update devel link, if needed +install-exec-hook: + if test "$(libdir)" != "$(rootlib_execdir)"; then \ + mkdir -p $(DESTDIR)$(rootlib_execdir) && \ so_img_name=$$(readlink $(DESTDIR)$(libdir)/libudev.so) && \ so_img_rel_target_prefix=$$(echo $(libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g') && \ - ln -sf $$so_img_rel_target_prefix$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/libudev.so && \ - mv $(DESTDIR)$(libdir)/libudev.so.* $(DESTDIR)$(rootlibdir); \ + ln -sf $$so_img_rel_target_prefix$(rootlib_execdir)/$$so_img_name $(DESTDIR)$(libdir)/libudev.so && \ + mv $(DESTDIR)$(libdir)/libudev.so.* $(DESTDIR)$(rootlib_execdir); \ fi uninstall-hook: - rm -f $(DESTDIR)$(rootlibdir)/libudev.so* + rm -f $(DESTDIR)$(rootlib_execdir)/libudev.so* -- cgit v1.2.3-54-g00ecf