summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreeve Jelbert2007-08-06 09:51:26 +0200
committerEric Sandall2007-08-06 18:36:48 -0700
commit9e4a54af10d602c3607ad563a849fffb083e47fe (patch)
treee932ce855d68ec70ca29f5c040b8d5a6ed9415a0
parentb4b9ec8f50eac951d5e3f8baa684ca1a7baf685e (diff)
glibc - fix typo
(cherry picked from commit 9d60d4806b419a5b8d4cb4b640a10b192f83541c)
-rwxr-xr-xlibs/glibc/BUILD4
-rw-r--r--libs/glibc/HISTORY3
2 files changed, 5 insertions, 2 deletions
diff --git a/libs/glibc/BUILD b/libs/glibc/BUILD
index 38cfaee172..7ffc310cf7 100755
--- a/libs/glibc/BUILD
+++ b/libs/glibc/BUILD
@@ -26,8 +26,8 @@ export CCACHE_RECACHE=true &&
#
local ADDONS
-ADDONS="nptl" &&
if [ "$GLIBC_NPTL" = "y" ]; then
+ ADDONS="nptl" &&
#
# Enable IDN?
#
@@ -38,7 +38,7 @@ if [ "$GLIBC_NPTL" = "y" ]; then
OPTS="$OPTS --with-tls \
--enable-kernel=2.6"
else
- ADDONS="linuxthreads"
+ ADDONS="linuxthreads" &&
OPTS="$OPTS --without-__thread \
--enable-kernel=2.4"
fi &&
diff --git a/libs/glibc/HISTORY b/libs/glibc/HISTORY
index d3b1878385..2480ef0c25 100644
--- a/libs/glibc/HISTORY
+++ b/libs/glibc/HISTORY
@@ -1,4 +1,7 @@
2007-08-06 Treeve Jelbert <treeve@sourcemage.org>
+ * BUILD: fix typo (bug #13925)
+
+2007-08-06 Treeve Jelbert <treeve@sourcemage.org>
* BUILD: fix broken libidn (bug #13925)
2007-05-13 Eric Sandall <sandalle@sourcemage.org>