From patchwork Sat Oct 25 12:15:09 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Max Filippov X-Patchwork-Id: 403040 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 737AD14007D for ; Sat, 25 Oct 2014 23:15:33 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 76D2B9609B; Sat, 25 Oct 2014 12:15:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BWM3wqlvVwos; Sat, 25 Oct 2014 12:15:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id F00CF9609F; Sat, 25 Oct 2014 12:15:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 38AF81BFA5C for ; Sat, 25 Oct 2014 12:15:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 320B932E9E for ; Sat, 25 Oct 2014 12:15:31 +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 GZKEcb1Gzqyo for ; Sat, 25 Oct 2014 12:15:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-lb0-f179.google.com (mail-lb0-f179.google.com [209.85.217.179]) by silver.osuosl.org (Postfix) with ESMTPS id 9600932E74 for ; Sat, 25 Oct 2014 12:15:29 +0000 (UTC) Received: by mail-lb0-f179.google.com with SMTP id l4so3734625lbv.38 for ; Sat, 25 Oct 2014 05:15:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=aeXIccYNuW1Yl106BMGWk0vBM5LtjOENbv9YVmstOzo=; b=A8LuNAqr0dVcX7OH02besdvN366CEHb1tr1alwAMZpzD1dbYRWU3E3rG8fGoptlVlF sKereLJQlZGYUTTMwFFBlbWD5klE138zKiTjIEiGZHfYXWZvl3rPxq+ZwlhcZ1lq90XG i4Jpqnd2HoyOtembUEMVmHKFJVTw3K0hCCh6+y5rW82rVPIvvA3Asjq4T8UBK4VT8u40 5A8qBBZ9QYSGejAUliaS6xupI6eifdN7SflHf4fqIQrYs1u+6J+LNlf1xTFEoPZTJymY dzAiINupeTlDPrsdNQiv1iuwaJFPr3J13Z3/JhLrEcMAK4oEry/UlSfab7LjofvftDQY UX6A== X-Received: by 10.152.198.166 with SMTP id jd6mr9472722lac.81.1414239327545; Sat, 25 Oct 2014 05:15:27 -0700 (PDT) Received: from octofox.metropolis ([5.19.183.212]) by mx.google.com with ESMTPSA id w10sm2851931lae.24.2014.10.25.05.15.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 25 Oct 2014 05:15:26 -0700 (PDT) From: Max Filippov To: buildroot@uclibc.org Date: Sat, 25 Oct 2014 16:15:09 +0400 Message-Id: <1414239309-24860-1-git-send-email-jcmvbkbc@gmail.com> X-Mailer: git-send-email 1.8.1.4 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] package/aircrack-ng: add missing space to LIBSQL X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Signed-off-by: Max Filippov --- package/aircrack-ng/aircrack-ng.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/aircrack-ng/aircrack-ng.mk b/package/aircrack-ng/aircrack-ng.mk index 720c144..b72506d 100644 --- a/package/aircrack-ng/aircrack-ng.mk +++ b/package/aircrack-ng/aircrack-ng.mk @@ -13,7 +13,7 @@ AIRCRACK_NG_DEPENDENCIES = openssl ifeq ($(BR2_PACKAGE_SQLITE),y) AIRCRACK_NG_MAKE_OPTS = sqlite=true AIRCRACK_NG_MAKE_OPTS += \ - LIBSQL="-lsqlite3$(if $(BR2_PREFER_STATIC_LIB),-lpthread)" + LIBSQL="-lsqlite3$(if $(BR2_PREFER_STATIC_LIB), -lpthread)" AIRCRACK_NG_DEPENDENCIES += sqlite else