diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-14 22:37:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-14 22:37:50 +0000 |
commit | 6d008e61f2bf0543f443f458334926e7794e3758 (patch) | |
tree | 42c56701d2cbc5a7dfad69c8da0b90882cf02578 | |
parent | 34ac9cf1c8bc7e85fc6b52c541d1f94dc3e06275 (diff) | |
download | buildroot-novena-6d008e61f2bf0543f443f458334926e7794e3758.tar.gz buildroot-novena-6d008e61f2bf0543f443f458334926e7794e3758.zip |
sync thread stuff with config.in as pointed out by mjn3
-rw-r--r-- | toolchain/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolchain/Makefile.in b/toolchain/Makefile.in index ab2eed0d5..1a2c0f26f 100644 --- a/toolchain/Makefile.in +++ b/toolchain/Makefile.in @@ -1,7 +1,7 @@ -ifeq ($(BR2_PTHREADS),y) -THREADS:=--enable-threads -else +ifeq ($(BR2_PTHREADS_NONE),y) THREADS:=--disable-threads +else +THREADS:=--enable-threads endif ifeq ($(BR2_ENABLE_MULTILIB),y) |