summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-10-29 17:51:06 +0100
committerMichael Stahl <mstahl@redhat.com>2013-10-30 00:01:33 +0100
commit2cb380bad6e7c8abaf15a7606d8e95ca86d5c8e6 (patch)
tree523f918977e9092e40fff3ed76271eb8fc1bb93f /Makefile.in
parent4b3dc6665dfb4a88c3068e769418866993c12b37 (diff)
solenv: remove gdb Package and CustomTarget
Since it's necessary to call install-gdb-printers anyway (which is what the CustomTarget_gdb does), just do it first thing in "build" target so that unit tests running during a from-scratch build get the pretty printers too. Change-Id: I357dfb828a2e0eed675aa552d3256f96a312a890
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 9c78dbf8fee1..a3af10711ddc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -233,11 +233,11 @@ bootstrap: compilerplugins
# Note: if invoked as "make check" this will also run subsequentcheck!
#
build: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cross-toolset)
- $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild \
- all $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck)
ifneq ($(filter-out WNT MACOSX IOS ANDROID,$(OS)),)
- install-gdb-printers -a $(INSTDIR)
+ mkdir -p $(INSTDIR) && install-gdb-printers -a $(INSTDIR) -c
endif
+ $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild \
+ all $(if $(filter check,$(MAKECMDGOALS)),subsequentcheck)
ifeq ($(OS),IOS)
$(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) ios
endif