+2016-11-22 Uros Bizjak <ubizjak@gmail.com>
+
+ * Makefile.in ($(lang_checks_parallelized)): Fix detection
+ of -j argument.
+
2016-11-15 Matthias Klose <doko@ubuntu.com>
* doc/install.texi: Move the 'Overriding configure test results'
# variable (see above check_gcc_parallelize description).
$(lang_checks_parallelized): check-% : site.exp
-rm -rf $(TESTSUITEDIR)/$*-parallel
- @if [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
+ @if [ -n "$(filter -j%, $(MFLAGS))" ]; then \
test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) || true; \
test -d $(TESTSUITEDIR)/$*-parallel || mkdir $(TESTSUITEDIR)/$*-parallel || true; \
GCC_RUNTEST_PARALLELIZE_DIR=`${PWD_COMMAND}`/$(TESTSUITEDIR)/$(check_p_tool)-parallel ; \
+2016-11-22 Uros Bizjak <ubizjak@gmail.com>
+
+ * gcc-interface/Make-lang.in (check-acats): Fix detection
+ of -j argument.
+
2016-11-13 Bob Duff <duff@adacore.com>
* gcc-interface/decl.c (gnat_to_gnu_entity): In assertion about known
@test -d $(ACATSDIR) || mkdir -p $(ACATSDIR); \
rootme=`${PWD_COMMAND}`; export rootme; \
EXPECT=$(EXPECT); export EXPECT; \
- if [ -z "$(CHAPTERS)" ] && [ "$(filter -j, $(MFLAGS))" = "-j" ]; \
+ if [ -z "$(CHAPTERS)" ] && [ -n "$(filter -j%, $(MFLAGS))" ]; \
then \
rm -rf $(ACATSDIR)-parallel; \
mkdir $(ACATSDIR)-parallel; \
+2016-11-22 Uros Bizjak <ubizjak@gmail.com>
+
+ * testsuite/Makefile.am
+ (check-DEJAGNU $(check_DEJAGNU_normal_targets)): Fix detection
+ of -j argument.
+ * testsuite/Makefile.in: Regenereate.
+
2016-11-15 Jonathan Wakely <jwakely@redhat.com>
* testsuite/experimental/any/typedefs.cc: Fix license text.
2016-07-04 Ville Voutilainen <ville.voutilainen@gmail.com>
Backport from mainline
- 2016-07-04 Ville Voutilainen <ville.voutilainen@gmail.com>
+ 2016-07-04 Ville Voutilainen <ville.voutilainen@gmail.com>
PR libstdc++/71313
* src/filesystem/ops.cc (remove_all(const path&, error_code&)):
check-DEJAGNU $(check_DEJAGNU_normal_targets): check-DEJAGNU%: site.exp
$(if $*,@)AR="$(AR)"; export AR; \
RANLIB="$(RANLIB)"; export RANLIB; \
- if [ -z "$*" ] && [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
+ if [ -z "$*" ] && [ -n "$(filter -j%, $(MFLAGS))" ]; then \
rm -rf normal-parallel || true; \
mkdir normal-parallel; \
$(MAKE) $(AM_MAKEFLAGS) $(check_DEJAGNU_normal_targets); \
check-DEJAGNU $(check_DEJAGNU_normal_targets): check-DEJAGNU%: site.exp
$(if $*,@)AR="$(AR)"; export AR; \
RANLIB="$(RANLIB)"; export RANLIB; \
- if [ -z "$*" ] && [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
+ if [ -z "$*" ] && [ -n "$(filter -j%, $(MFLAGS))" ]; then \
rm -rf normal-parallel || true; \
mkdir normal-parallel; \
$(MAKE) $(AM_MAKEFLAGS) $(check_DEJAGNU_normal_targets); \