From 182c9b158495b55212651ed5e57d0d486a6ba781 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 5 Jul 2009 23:56:24 +0200 Subject: [PATCH 1/1] 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 --- configure.ac | 4 ++-- libudev/Makefile.am | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 498c4c9ab..96c10f7a6 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ AC_PATH_PROG([XSLTPROC], [xsltproc]) AC_ARG_WITH([rootlibdir], AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]), [], [with_rootlibdir=$libdir]) -AC_SUBST([rootlibdir], [$with_rootlibdir]) +AC_SUBST([rootlib_execdir], [$with_rootlibdir]) AC_ARG_WITH([selinux], AS_HELP_STRING([--with-selinux], [enable SELinux support]), @@ -142,7 +142,7 @@ AC_MSG_RESULT([ sysconfdir: ${sysconfdir} sbindir: ${sbindir} libdir: ${libdir} - rootlibdir: ${rootlibdir} + rootlibdir: ${rootlib_execdir} libexecdir: ${libexecdir} datarootdir: ${datarootdir} diff --git a/libudev/Makefile.am b/libudev/Makefile.am index b50eac962..3ed05a31e 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* -- 2.30.2