From patchwork Sun Dec 9 21:48:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 204788 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 38B7F2C01C2 for ; Mon, 10 Dec 2012 08:49:01 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9D0B031065; Sun, 9 Dec 2012 21:48:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aoz+Rco3MYqD; Sun, 9 Dec 2012 21:48:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 219A130ED1; Sun, 9 Dec 2012 21:48:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C197D8F74B for ; Sun, 9 Dec 2012 21:49:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9EC5585B47 for ; Sun, 9 Dec 2012 21:48:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 099c9i8uUav4 for ; Sun, 9 Dec 2012 21:48:54 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 27F9D80A1C for ; Sun, 9 Dec 2012 21:48:53 +0000 (UTC) Received: from asgard (host201.201-252-64.telecom.net.ar [201.252.64.201]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qB9LmlOS024395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 9 Dec 2012 21:48:49 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1355089731; bh=q3tIbjLpyxPgn9jtp11ilB/yzBY9HY4zAPxwzrKdSzs=; h=From:To:Cc:Subject:Date; b=efAdm/pfuZJEGLrAMwRoIJTCKq+kQpgy9B49ShjsrPfYdB6HEm5nycph9nOe5J6DF q3iTvC/tvnvMecLUjfz9MTz8HE4e8kkiX4i/uUMNl3dwyV25Wjat6cQ42tvOhk3FrW ElH469DQ8Oc+zBAvlGBV9yKNqTQ1sacv97I4WOc4= Received: by asgard (sSMTP sendmail emulation); Sun, 09 Dec 2012 18:48:46 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 9 Dec 2012 18:48:45 -0300 Message-Id: <1355089725-12019-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] rt-tests: fix typo in Config.in threads negative logic X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/rt-tests/Config.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/rt-tests/Config.in b/package/rt-tests/Config.in index c253339..0999ebf 100644 --- a/package/rt-tests/Config.in +++ b/package/rt-tests/Config.in @@ -17,4 +17,4 @@ config BR2_PACKAGE_RT_TESTS http://rt.wiki.kernel.org comment "rt-tests requires a toolchain with threads support" - !BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_TOOLCHAIN_HAS_THREADS