* configure.in: In "running configure fragment for" message,
authorRoland McGrath <roland@gnu.org>
Sat, 1 Mar 2003 22:40:30 +0000 (22:40 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 1 Mar 2003 22:40:30 +0000 (22:40 +0000)
omit $srcdir from the name if we prepended it.
* configure: Regenerated.

ChangeLog
configure
configure.in
nptl/ChangeLog
nptl/sem_open.c

index e35228f..c5b8a4d 100644 (file)
--- a/ChangeLog
+++ b/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>.
 
index ea9e9d5..0dfc3c6 100755 (executable)
--- a/configure
+++ b/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
 
index f7d8471..3ba21bc 100644 (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
 [
index 113d69a..b85d911 100644 (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
index 111b5f5..2bfea63 100644 (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.  */