efl: force problematic -luuid to go away from .la

This commit is contained in:
Cedric Bail 2013-05-05 15:57:44 +09:00
parent 64241457f0
commit 433e123428
1 changed files with 8 additions and 0 deletions

View File

@ -99,3 +99,11 @@ clean-local:
find . -type f -name '*.gcno' -delete
find . -type f -name '*.gcda' -delete
find . -type f -name check-results.xml -delete
install-data-hook:
echo $(DESTDIR)
echo $(libdir)
for i in $(lib_LTLIBRARIES); do \
export file=`basename $$i`; \
sed -e "s/-luuid//" $(DESTDIR)/${libdir}/$$file > $(DESTDIR)/${libdir}/$$file.tmp && mv $(DESTDIR)/${libdir}/$$file.tmp $(DESTDIR)/${libdir}/$$file; \
done