diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 19:58:18 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 19:58:18 +0000 |
commit | 4891f7e79d75208d067f7a23e1dde62f057e4ce4 (patch) | |
tree | fe2214cf1c9d976b7831de9d15b55ad289fde874 | |
parent | 50ec2fdadbad18fe7c6e546104175471789791b5 (diff) | |
download | buildroot-novena-4891f7e79d75208d067f7a23e1dde62f057e4ce4.tar.gz buildroot-novena-4891f7e79d75208d067f7a23e1dde62f057e4ce4.zip |
Fix renaming of UCLIBC_HAS_THREADS_NATIVE option for buildroot.
-rw-r--r-- | target/device/AMD/DBAu1500/uClibc.config.mips | 2 | ||||
-rw-r--r-- | target/device/AMD/DBAu1500/uClibc.config.mipsel | 2 | ||||
-rw-r--r-- | toolchain/uClibc/uclibc.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/target/device/AMD/DBAu1500/uClibc.config.mips b/target/device/AMD/DBAu1500/uClibc.config.mips index fd28e2c4b..b7dfff1c9 100644 --- a/target/device/AMD/DBAu1500/uClibc.config.mips +++ b/target/device/AMD/DBAu1500/uClibc.config.mips @@ -66,7 +66,7 @@ LDSO_RUNPATH=y UCLIBC_CTOR_DTOR=y # HAS_NO_THREADS is not set UCLIBC_HAS_THREADS=y -# PTHREADS_NATIVE is not set +# UCLIBC_HAS_THREADS_NATIVE is not set PTHREADS_DEBUG_SUPPORT=y UCLIBC_HAS_LFS=y # UCLIBC_STATIC_LDCONFIG is not set diff --git a/target/device/AMD/DBAu1500/uClibc.config.mipsel b/target/device/AMD/DBAu1500/uClibc.config.mipsel index 971b800bd..2f9578305 100644 --- a/target/device/AMD/DBAu1500/uClibc.config.mipsel +++ b/target/device/AMD/DBAu1500/uClibc.config.mipsel @@ -66,7 +66,7 @@ LDSO_RUNPATH=y UCLIBC_CTOR_DTOR=y # HAS_NO_THREADS is not set UCLIBC_HAS_THREADS=y -# PTHREADS_NATIVE is not set +# UCLIBC_HAS_THREADS_NATIVE is not set PTHREADS_DEBUG_SUPPORT=y UCLIBC_HAS_LFS=y # UCLIBC_STATIC_LDCONFIG is not set diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk index 75a960c2a..8bf4ae74a 100644 --- a/toolchain/uClibc/uclibc.mk +++ b/toolchain/uClibc/uclibc.mk @@ -73,7 +73,7 @@ ifeq ($(BR2_SOFT_FLOAT),y) $(SED) 's,.*HAS_FPU.*,HAS_FPU=n\nUCLIBC_HAS_FLOATS=y\nUCLIBC_HAS_SOFT_FLOAT=y,g' $(UCLIBC_DIR)/.config endif ifeq ($(BR2_PTHREADS_NATIVE),y) - $(SED) 's,# PTHREADS_NATIVE is not set,PTHREADS_NATIVE=y,g' $(UCLIBC_DIR)/.config + $(SED) 's,# UCLIBC_HAS_THREADS_NATIVE is not set,UCLIBC_HAS_THREADS_NATIVE=y,g' $(UCLIBC_DIR)/.config $(SED) 's,# UCLIBC_HAS_THREADS is not set,UCLIBC_HAS_THREADS=y,g' $(UCLIBC_DIR)/.config endif mkdir -p $(TOOL_BUILD_DIR)/uClibc_dev/usr/include |