From patchwork Mon Jun 10 16:26:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 250292 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 6DDDE2C008A for ; Tue, 11 Jun 2013 02:27:18 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C29678A1A8; Mon, 10 Jun 2013 16:27:15 +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 8jAwLvMkZu-5; Mon, 10 Jun 2013 16:27:11 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 444188A37A; Mon, 10 Jun 2013 16:27:10 +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 D438F8F7A2 for ; Mon, 10 Jun 2013 16:27:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C2E658A37A for ; Mon, 10 Jun 2013 16:27:08 +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 hMB7QgK7GZOd for ; Mon, 10 Jun 2013 16:27:07 +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 C651685DC2 for ; Mon, 10 Jun 2013 16:27:06 +0000 (UTC) Received: from asgard (host115.190-138-228.telecom.net.ar [190.138.228.115]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r5AGR0di025626 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 10 Jun 2013 16:27:02 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1370881624; bh=6u6erzHO7R7pfFbge7jDPtoshEVPet61f+U4mQWvbD0=; h=From:To:Cc:Subject:Date; b=lS2Ri+KOnpZ1UDzARoA+/hmqPbvdsY5zmCx8b7NzDC3OZG8XzHCPo58nYssWa+9fX 6z8x4QulP1CsVcz33CgY0N54gW8ob0frHwcobD/dRhEMjKfWiqglTRZ9DKcg4gPYqe XwpVQfsJYuC3Z2rT3EuZOWYpzlCdsEDYiXwwQEEQ= Received: by asgard (sSMTP sendmail emulation); Mon, 10 Jun 2013 13:26:59 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 10 Jun 2013 13:26:58 -0300 Message-Id: <1370881618-16167-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] strace: fix legal info 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 The license file changed from COPYRIGHT->COPYING. Fixes: http://autobuild.buildroot.net/results/b61/b61e1775cd1eec83470424e88ced5bd49e0cd469/ Signed-off-by: Gustavo Zacarias --- package/strace/strace.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/strace/strace.mk b/package/strace/strace.mk index 0dce096..9addbb6 100644 --- a/package/strace/strace.mk +++ b/package/strace/strace.mk @@ -8,7 +8,7 @@ STRACE_VERSION = 4.8 STRACE_SOURCE = strace-$(STRACE_VERSION).tar.xz STRACE_SITE = http://downloads.sourceforge.net/project/strace/strace/$(STRACE_VERSION) STRACE_LICENSE = BSD-3c -STRACE_LICENSE_FILES = COPYRIGHT +STRACE_LICENSE_FILES = COPYING STRACE_CONF_ENV = ac_cv_header_linux_if_packet_h=yes \ ac_cv_header_linux_netlink_h=yes