mirror of git://gcc.gnu.org/git/gcc.git
* ada/acats/run_all.sh: Redirect mkdir stderr to /dev/null.
From-SVN: r215330
This commit is contained in:
parent
621d5431a2
commit
f020a31c22
|
|
@ -1,3 +1,7 @@
|
||||||
|
2014-09-17 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* ada/acats/run_all.sh: Redirect mkdir stderr to /dev/null.
|
||||||
|
|
||||||
2014-09-17 Paolo Carlini <paolo.carlini@oracle.com>
|
2014-09-17 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
PR c++/63241
|
PR c++/63241
|
||||||
|
|
|
||||||
|
|
@ -268,7 +268,7 @@ for chapter in $chapters; do
|
||||||
if [ $par_countm -eq 1 ]; then
|
if [ $par_countm -eq 1 ]; then
|
||||||
as_fn_arith $par_count + 1
|
as_fn_arith $par_count + 1
|
||||||
par_count=$as_val
|
par_count=$as_val
|
||||||
if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count; then
|
if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count 2>/dev/null; then
|
||||||
par_last=1
|
par_last=1
|
||||||
else
|
else
|
||||||
par_last=
|
par_last=
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue