blob: 0228bfec330bae971ad26e5e43d671f878eaf91c (
plain)
1 we handle split /usr logic ourselves. this ends up breaking when building
2 for an abi that doesn't exist in / (like cross-compiling) as the tests fail.
3
4 --- a/libntfs-3g/Makefile.in
5 +++ b/libntfs-3g/Makefile.in
6 @@ -912,19 +912,6 @@ uninstall-am: uninstall-libLTLIBRARIES uninstall-local \
7 uninstall-rootlibLTLIBRARIES
8
9
10 -# We may need to move .so files to root
11 -# And create ldscript or symbolic link from /usr
12 -install-exec-hook: install-rootlibLTLIBRARIES
13 -@INSTALL_LIBRARY_TRUE@ if [ ! "$(rootlibdir)" -ef "$(libdir)" ]; then \
14 -@INSTALL_LIBRARY_TRUE@ $(MV) -f "$(DESTDIR)/$(libdir)"/libntfs-3g.so* "$(DESTDIR)/$(rootlibdir)"; \
15 -@INSTALL_LIBRARY_TRUE@ fi
16 -@GENERATE_LDSCRIPT_TRUE@@INSTALL_LIBRARY_TRUE@ if [ ! "$(rootlibdir)" -ef "$(libdir)" ]; then \
17 -@GENERATE_LDSCRIPT_TRUE@@INSTALL_LIBRARY_TRUE@ $(install_sh_PROGRAM) "libntfs-3g.script.so" "$(DESTDIR)/$(libdir)/libntfs-3g.so"; \
18 -@GENERATE_LDSCRIPT_TRUE@@INSTALL_LIBRARY_TRUE@ fi
19 -@GENERATE_LDSCRIPT_FALSE@@INSTALL_LIBRARY_TRUE@ if [ ! "$(rootlibdir)" -ef "$(libdir)" ]; then \
20 -@GENERATE_LDSCRIPT_FALSE@@INSTALL_LIBRARY_TRUE@ $(LN_S) "$(rootlibdir)/libntfs-3g.so" "$(DESTDIR)/$(libdir)/libntfs-3g.so"; \
21 -@GENERATE_LDSCRIPT_FALSE@@INSTALL_LIBRARY_TRUE@ fi
22 -
23 uninstall-local:
24 @INSTALL_LIBRARY_TRUE@ $(RM) -f "$(DESTDIR)/$(rootlibdir)"/libntfs-3g.so*
25
|