summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreeve Jelbert2007-08-06 09:51:26 +0200
committerDavid Brown2007-09-23 23:05:39 -0700
commit9521270c0be588a94703823ad992ac0b22121529 (patch)
tree129921268a8b6c82032d7920eda1e44b23622ead
parent0a6055f7d09de171f334c2cb221b8fafe39311b5 (diff)
glibc - fix typo
-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 c6da422856..a467a62fe1 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>