/bin/ksh can't handle a for-loop with no arguments, so add a "." for when

2008-02-09  Matthias Clasen <mclasen@redhat.com>

        * Makefile.decl: /bin/ksh can't handle a for-loop with no
        arguments, so add a "." for when $(SUBDIRS) is empty.

        * glib/tests/option-context.c:
        * glib/tests/testing.c:
        * gthread/gthread-posix.c:
        * tets/testingbase64.c:
        * glib/gtester.c:
        * glib/gsequence.c: Portability fixes.  (#515154)



svn path=/trunk/; revision=6487
This commit is contained in:
Matthias Clasen
2008-02-10 04:41:25 +00:00
committed by Matthias Clasen
parent 634d64c9a1
commit da0e7e81c1
13 changed files with 65 additions and 38 deletions

View File

@@ -190,7 +190,7 @@ g_output_stream_write (GOutputStream *stream,
if (((gssize) count) < 0)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
_("Too large count value passed to %s"), __FUNCTION__);
_("Too large count value passed to %s"), G_STRFUNC);
return -1;
}
@@ -645,7 +645,7 @@ g_output_stream_write_async (GOutputStream *stream,
user_data,
G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
_("Too large count value passed to %s"),
__FUNCTION__);
G_STRFUNC);
return;
}