diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2013-06-19 14:50:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-09 22:09:16 +0200 |
commit | 573b8543cb41b88dd6e255a3c566a31a881a3e7e (patch) | |
tree | 6c5e913f53099980c2a0493048a3f5174a8e90a8 /Makefile.in | |
parent | 3cc8feff1b81ddfe4eafa5cf23e98b1c536f5f1a (diff) |
start to use instdir for subsequentcheck tests; avoid make dev-install
This commit breaks linkoo.
make dev-install continues to work as before but it's not necessary to
use it anymore.
make check now uses files copied into instdir by gbuild.
TODO: fix remaining issues so that instdir is the same as install/.
Change-Id: I66836170f0922ee9ba204a61ffacc30d9e9a5d98
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index eef1aecf3d62..f1d5b37e4468 100644 --- a/Makefile.in +++ b/Makefile.in @@ -381,7 +381,7 @@ findunusedcode: | grep -v ^WSObject \ > unusedcode.easy -check: dev-install subsequentcheck +check: build subsequentcheck dump-deps: @$(SRCDIR)/bin/module-deps.pl $(GNUMAKE) $(SRCDIR)/Makefile.gbuild @@ -389,7 +389,7 @@ dump-deps: dump-deps-png: @$(SRCDIR)/bin/module-deps.pl $(GNUMAKE) $(SRCDIR)/Makefile.gbuild | dot -Tpng -o lo.png -subsequentcheck :| $(if $(filter-out subsequentcheck,$(MAKECMDGOALS)),dev-install) +subsequentcheck :| $(if $(filter-out subsequentcheck,$(MAKECMDGOALS)),build) $(GNUMAKE) -j $(CHECK_PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild $@ .PHONY : debugrun help slowcheck translations unitcheck |