]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* 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 e35228fe725f359ada93f303d2f24972ba35a21c..c5b8a4d31310632351c62b1bac324d43206fdfd4 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 ea9e9d5fbd268c735df0673dbbe59593f5485526..0dfc3c60103ddc65e9a527e42edfe1ee70805238 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 f7d8471cfe990ed45d85669be64dba2667f1a6ff..3ba21bcce657248cca44bd1742d9137cdc114e2a 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 113d69aad300b795d3de48283a71f216cc4782d6..b85d911e0f491bbcbe6933740a105b3c7fefd79f 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 111b5f57dd2e4b991f12fee402e2ed617cec5a06..2bfea63a807f64419dc8e83852032d74d2535320 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.  */