cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=de7b7f381c6ec35e6c39947cebf775ed8caad488
commit de7b7f381c6ec35e6c39947cebf775ed8caad488 Author: Cedric Bail <cedric.b...@samsung.com> Date: Mon Dec 9 10:57:12 2013 +0900 build: fix installing in DESTDIR for packaging and buildbot. This should fix T628 . --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 1769a6b..2d7fdd1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -103,5 +103,5 @@ clean-local: find . -type f -name check-results.xml -delete install-exec-hook: - for i in $(lib_LTLIBRARIES); do sed -i "s/-luuid//" $(libdir)/`echo $$i | sed "s#lib/.*/##"`; done + for i in $(lib_LTLIBRARIES); do sed -i "s/-luuid//" $(DESTDIR)$(libdir)/`echo $$i | sed "s#lib/.*/##"`; done $(EFL_INSTALL_EXEC_HOOK) --