stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=dd6f81ea15b565a44e3c9231fd4bc57f4698a40a
commit dd6f81ea15b565a44e3c9231fd4bc57f4698a40a Author: Stefan Schmidt <s.schm...@samsung.com> Date: Wed Feb 25 14:20:16 2015 +0100 build: Ensure we have $(DESTDIR)$(libdir) during parallel install While install-exec-hook gets normally executed after install and thus we would have this we need to ensure it here when we want to be safe regarding parallel install. --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.am b/src/Makefile.am index b0b4884..5a4e414 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -146,6 +146,7 @@ clean-local: find . -type f -name check-results.xml -delete install-exec-hook: + $(MKDIR_P) $(DESTDIR)$(libdir) for i in $(lib_LTLIBRARIES); do \ FNAME="$(DESTDIR)$(libdir)/`echo $$i | sed "s#lib/.*/##"`"; \ FNAMEEXT="$$FNAME.$$$$"; \ --