Browse Source

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

omit $srcdir from the name if we prepended it.
	* configure: Regenerated.
cvs/fedora-2_3-branch
Roland McGrath 23 years ago
parent
commit
d114938564
  1. 4
      ChangeLog
  2. 4
      configure
  3. 2
      configure.in
  4. 4
      nptl/ChangeLog
  5. 4
      nptl/sem_open.c

4
ChangeLog

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

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

2
configure.in

@ -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
[

4
nptl/ChangeLog

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

4
nptl/sem_open.c

@ -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. */

Loading…
Cancel
Save