diff mbox series

Fix out-of-tree build.

Message ID 20190308145554.17299-1-chrubis@suse.cz
State Accepted
Delegated to: Petr Vorel
Headers show
Series Fix out-of-tree build. | expand

Commit Message

Cyril Hrubis March 8, 2019, 2:55 p.m. UTC
Ths fixes out of tree build by making the libs directory to be
dependency of libs-all.

Not that the the lib and include directory are created as the side efect
of the AC_CONFIG_FILES() and hence don't need to be created in the
top-level Makefile.

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
CC: Petr Vorel <pvorel@suse.cz>
CC: Jan Stancek <jstancek@redhat.com>
---

This should be last fix for the numa build troubles.

I still have out-of-tree build failures in ffsb configure but I had
enough autoconf and make for today...

 Makefile | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Petr Vorel March 8, 2019, 3:20 p.m. UTC | #1
Hi Cyril,

> Ths fixes out of tree build by making the libs directory to be
> dependency of libs-all.

> Not that the the lib and include directory are created as the side efect
> of the AC_CONFIG_FILES() and hence don't need to be created in the
> top-level Makefile.


> This should be last fix for the numa build troubles.
Tested-by: Petr Vorel <pvorel@suse.cz>

Thanks for all todays fixes, nice to be green again!

Tested all 4, locally and via travis:
https://travis-ci.org/pevik/ltp/builds/503638096


> I still have out-of-tree build failures in ffsb configure but I had
> enough autoconf and make for today...
:).

BTW That reminds me some problems with out-of-tree builds: missing files.
It'd be nice to get back to it again.

Kind regards,
Petr
Cyril Hrubis March 8, 2019, 3:25 p.m. UTC | #2
Hi!
> > This should be last fix for the numa build troubles.
> Tested-by: Petr Vorel <pvorel@suse.cz>
> 
> Thanks for all todays fixes, nice to be green again!

Thanks for the testing, all four patches pushed now.
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index bc6e9a3e0..170c2da20 100644
--- a/Makefile
+++ b/Makefile
@@ -110,6 +110,11 @@  $(sort $(addprefix $(abs_top_builddir)/,$(BOOTSTRAP_TARGETS)) $(INSTALL_DIR) $(D
 ## Pattern based subtarget rules.
 lib-install: lib-all
 
+$(abs_top_builddir)/libs:
+	mkdir -m 00755 -p "$@"
+
+libs-all: $(abs_top_builddir)/libs
+
 $(MAKE_TARGETS) include-all lib-all libs-all:
 	$(MAKE) -C "$(subst -all,,$@)" \
 		-f "$(abs_top_srcdir)/$(subst -all,,$@)/Makefile" all