summaryrefslogtreecommitdiff
blob: 86eb6f8186908fb5e0d440cabf157a7e5f392256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
--- xfsprogs-4.2.0/include/buildmacros
+++ xfsprogs-4.2.0/include/buildmacros
@@ -70,18 +70,9 @@
 # /usr/lib.
 ifeq ($(ENABLE_SHARED),yes)
 INSTALL_LTLIB_DEV = \
-	cd $(TOPDIR)/$(LIBNAME)/.libs; \
-	../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
-	../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR); \
-	../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_LIB_DIR)/$(LIBNAME).la ; \
-	../$(INSTALL) -m 755 -d $(PKG_ROOT_LIB_DIR); \
-	../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_ROOT_LIB_DIR); \
-	if [ "x$(shell readlink -f $(PKG_LIB_DIR))" != \
-	     "x$(shell readlink -f $(PKG_ROOT_LIB_DIR))" ]; then \
-		../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).a $(PKG_ROOT_LIB_DIR)/$(LIBNAME).a; \
-		../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).la $(PKG_ROOT_LIB_DIR)/$(LIBNAME).la; \
-		../$(INSTALL) -S $(PKG_ROOT_LIB_DIR)/$(LIBNAME).so $(PKG_LIB_DIR)/$(LIBNAME).so; \
-	fi
+	set -e; cd $(TOPDIR)/$(LIBNAME); \
+	$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \
+	env -uDIST_ROOT $(LTINSTALL) $(TOPDIR)/$(LIBNAME)/$(LIBNAME).la $(DIST_ROOT)$(PKG_LIB_DIR)/$(LIBNAME).la
 else
 INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC)
 endif
--- xfsprogs-4.2.0/libxcmd/Makefile
+++ xfsprogs-4.2.0/libxcmd/Makefile
@@ -34,6 +34,9 @@
 
 include $(BUILDRULES)
 
-install install-dev: default
+install: default
+
+install-dev: default
+	$(INSTALL_LTLIB_DEV)
 
 -include .ltdep
--- xfsprogs-4.2.0/libxfs/Makefile
+++ xfsprogs-4.2.0/libxfs/Makefile
@@ -138,6 +138,7 @@
 
 install-dev: install
 	$(INSTALL) -m 644 $(PKGHFILES) $(PKG_INC_DIR)
+	$(INSTALL_LTLIB_DEV)
 
 # We need to install the headers before building the dependencies.  If we
 # include the .ltdep file, the makefile decides that it needs to build the
--- xfsprogs-4.2.0/libxlog/Makefile
+++ xfsprogs-4.2.0/libxlog/Makefile
@@ -12,6 +12,8 @@
 
 CFILES = xfs_log_recover.c util.c
 
+LTLIBS = $(LIBUUID) $(LIBXFS)
+
 # don't want to link xfs_repair with a debug libxlog.
 DEBUG = -DNDEBUG
 
@@ -19,6 +21,9 @@
 
 include $(BUILDRULES)
 
-install install-dev: default
+install: default
+
+install-dev: default
+	$(INSTALL_LTLIB_DEV)
 
 -include .ltdep
--- xfsprogs-4.2.0/Makefile
+++ xfsprogs-4.2.0/Makefile
@@ -81,6 +81,8 @@
 io: libxcmd libhandle
 quota: libxcmd
 repair: libxlog
+libxlog: libxfs
+libxlog-install-dev: libxfs-install-dev
 
 
 ifeq ($(HAVE_BUILDDEFS), yes)