aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/Makefile.in
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-04-09 20:50:46 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-04-09 20:50:46 +0000
commit26e197f641720675267ff868edc3ddfb46c07b91 (patch)
tree30ab4e4d2cd1e7b490c6db61055acb0bac52fe93 /gdb/testsuite/Makefile.in
parent872906844b391ff0b3c7a48f3e2b3c867e0019c0 (diff)
downloadgdb-26e197f641720675267ff868edc3ddfb46c07b91.zip
gdb-26e197f641720675267ff868edc3ddfb46c07b91.tar.gz
gdb-26e197f641720675267ff868edc3ddfb46c07b91.tar.bz2
gdb/testsuite/
Fix non-GNU make compatibility. * Makefile.in ($(TEST_TARGETS)): Conditionalize it by @GMAKE_TRUE@.
Diffstat (limited to 'gdb/testsuite/Makefile.in')
-rw-r--r--gdb/testsuite/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in
index 5238cf0..8d8d704 100644
--- a/gdb/testsuite/Makefile.in
+++ b/gdb/testsuite/Makefile.in
@@ -174,9 +174,9 @@ check-parallel:
$(SHELL) $(srcdir)/dg-extract-results.sh -L \
$(addsuffix /gdb.log,$(TEST_DIRS)) > gdb.log
-$(filter-out check-gdb.base%,$(TEST_TARGETS)): check-gdb.%: all $(abs_builddir)/site.exp
- @if test ! -d gdb.$*; then mkdir gdb.$*; fi
- $(DO_RUNTEST) --directory=gdb.$* --outdir=gdb.$* $(RUNTESTFLAGS)
+@GMAKE_TRUE@$(filter-out check-gdb.base%,$(TEST_TARGETS)): check-gdb.%: all $(abs_builddir)/site.exp
+@GMAKE_TRUE@ @if test ! -d gdb.$*; then mkdir gdb.$*; fi
+@GMAKE_TRUE@ $(DO_RUNTEST) --directory=gdb.$* --outdir=gdb.$* $(RUNTESTFLAGS)
# Each half (roughly) of the .exp files from gdb.base.
BASE1_FILES = $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/gdb.base/[a-m]*.exp))