Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] testsuite: non-GNU make compatibility fix
@ 2010-04-09 20:33 Jan Kratochvil
  2010-04-09 20:46 ` Tom Tromey
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Kratochvil @ 2010-04-09 20:33 UTC (permalink / raw)
  To: gdb-patches

Hi,

currently on Solaris in gdb/testsuite/:
	make: Fatal error in reader: Makefile, line 177: Extra `:', `::', or `:=' on dependency line

Line 177 is:
	$(filter-out check-gdb.base%,$(TEST_TARGETS)): check-gdb.%: all $(abs_builddir)/site.exp

There is already:
	@GMAKE_TRUE@CHECK_TARGET = $(if $(FORCE_PARALLEL),check-parallel,$(if $(RUNTESTFLAGS),check-single,check-parallel))
	@GMAKE_FALSE@CHECK_TARGET = check-single

The testsuite runs there with this change.


Thanks,
Jan

gdb/testsuite/
2010-04-09  Jan Kratochvil  <jan.kratochvil@redhat.com>

	Fix non-GNU make compatibility.
	* Makefile.in ($(TEST_TARGETS)): Conditionalize it by @GMAKE_TRUE@.

--- 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))


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-04-09 20:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-09 20:33 [patch] testsuite: non-GNU make compatibility fix Jan Kratochvil
2010-04-09 20:46 ` Tom Tromey
2010-04-09 20:51   ` Jan Kratochvil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox