summaryrefslogtreecommitdiffstats
path: root/libuuid
diff options
context:
space:
mode:
authorThomas Petazzoni2014-06-12 22:10:27 +0200
committerKarel Zak2014-06-16 14:53:09 +0200
commit6e90f2b479ed03f48e429bb7164fc7e9f402e1de (patch)
tree9bca226447acc21481d3167f37803c98ea02d052 /libuuid
parentMerge branch 'tests-utmp' of https://github.com/rudimeier/util-linux (diff)
downloadkernel-qcow2-util-linux-6e90f2b479ed03f48e429bb7164fc7e9f402e1de.tar.gz
kernel-qcow2-util-linux-6e90f2b479ed03f48e429bb7164fc7e9f402e1de.tar.xz
kernel-qcow2-util-linux-6e90f2b479ed03f48e429bb7164fc7e9f402e1de.zip
Only move shared libraries to /lib if they exists
In several Makemodule.am, there is a install-exec-hook-<library> target whose role is to move the shared library from /usr/lib to /lib, while keeping a symbolic link /usr/lib/libuuid.so -> ../../lib/<library>.so.<version>. However, when util-linux is built with --enable-static --disable-shared (as is needed on noMMU platforms that don't support shared libraries), no <library>.so is built, but the install-exec-hook-libuuid creates an invalid /usr/lib/<library>.so symbolic link, pointing to ../../lib (yes, the directory). This causes troubles later one when other libraries/programs are compiled with -l<library>, as gcc thinks a shared library is available because there's a file named /usr/lib/<library>.so. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'libuuid')
-rw-r--r--libuuid/src/Makemodule.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/libuuid/src/Makemodule.am b/libuuid/src/Makemodule.am
index a20cb4ccb..a5fd561cf 100644
--- a/libuuid/src/Makemodule.am
+++ b/libuuid/src/Makemodule.am
@@ -44,7 +44,7 @@ EXTRA_DIST += libuuid/src/uuid.sym
# move lib from $(usrlib_execdir) to $(libdir) if needed
install-exec-hook-libuuid:
- if test "$(usrlib_execdir)" != "$(libdir)"; then \
+ if test "$(usrlib_execdir)" != "$(libdir)" -a -f "$(DESTDIR)$(usrlib_execdir)/libuuid.so"; then \
mkdir -p $(DESTDIR)$(libdir); \
mv $(DESTDIR)$(usrlib_execdir)/libuuid.so.* $(DESTDIR)$(libdir); \
so_img_name=$$(readlink $(DESTDIR)$(usrlib_execdir)/libuuid.so); \