* configure.in: In "running configure fragment for" message,

omit $srcdir from the name if we prepended it.
	* configure: Regenerated.
This commit is contained in:
Roland McGrath 2003-03-01 22:40:30 +00:00
parent 7ed33cba81
commit d114938564
5 changed files with 13 additions and 5 deletions

View File

@ -1,5 +1,9 @@
2003-03-01 Roland McGrath <roland@redhat.com>
* configure.in: In "running configure fragment for" message,
omit $srcdir from the name if we prepended it.
* configure: Regenerated.
* elf/dl-reloc.c (allocate_static_tls): Fix calculations.
From Jakub Jelinek <jakub@redhat.com>.

4
configure vendored
View File

@ -6335,8 +6335,8 @@ for dir in $sysnames; do
*) dest=$srcdir/$dir ;;
esac
if test -r $dest/configure; then
echo "$as_me:$LINENO: result: running configure fragment for $dest" >&5
echo "${ECHO_T}running configure fragment for $dest" >&6
echo "$as_me:$LINENO: result: running configure fragment for $dir" >&5
echo "${ECHO_T}running configure fragment for $dir" >&6
. $dest/configure
fi

View File

@ -1732,7 +1732,7 @@ for dir in $sysnames; do
*) dest=$srcdir/$dir ;;
esac
if test -r $dest/configure; then
AC_MSG_RESULT(running configure fragment for $dest)
AC_MSG_RESULT(running configure fragment for $dir)
. $dest/configure
fi
[

View File

@ -1,3 +1,7 @@
2003-03-01 Roland McGrath <roland@redhat.com>
* sem_open.c (sem_open): Braino fix.
2003-03-01 Ulrich Drepper <drepper@redhat.com>
* descr.h (struct pthread): Move tid field to the front now that

View File

@ -126,8 +126,8 @@ sem_t *
sem_open (const char *name, int oflag, ...)
{
char *finalname;
size_t namelen = SEM_FAILED;
sem_t *result;
size_t namelen;
sem_t *result = SEM_FAILED;
int fd;
/* Determine where the shmfs is mounted. */