summaryrefslogtreecommitdiff
path: root/libudev
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2009-07-05 23:56:24 +0200
committerKay Sievers <kay.sievers@vrfy.org>2009-07-05 23:56:24 +0200
commit182c9b158495b55212651ed5e57d0d486a6ba781 (patch)
tree75d93ea8ba8ed3f816a85d335a287bc46d10922f /libudev
parent15106c483315faf737f560e833c2d3440af529ee (diff)
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
Diffstat (limited to 'libudev')
-rw-r--r--libudev/Makefile.am14
1 files changed, 7 insertions, 7 deletions
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*