Commit ecf5939c authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

Makefile.autotools.in: fixup .la files in all lib dirs



Sometimes usr/lib32 or usr/lib64 is used instead of usr/lib, so search
those for .la files as well.

Fixes .la fixup for beecrypt on x86-64.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 59493977
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ endif
ifndef $(2)_INSTALL_STAGING_CMDS
define $(2)_INSTALL_STAGING_CMDS
	$$($$(PKG)_MAKE_ENV) $$($$(PKG)_MAKE) $$($$(PKG)_INSTALL_STAGING_OPT) -C $$($$(PKG)_SRCDIR)
	for i in $$$$(find $(STAGING_DIR)/usr/lib/ -name "*.la"); do \
	for i in $$$$(find $(STAGING_DIR)/usr/lib* -name "*.la"); do \
		cp $$$$i $$$$i~; \
		$$(SED) "s:\(['= ]\)/usr:\\1$(STAGING_DIR)/usr:g" $$$$i; \
	done