From patchwork Wed Jul 25 11:18:10 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 949118 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=datacom.com.br Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41bCQZ5tGBz9s1R for ; Wed, 25 Jul 2018 21:18:29 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B34038DB83; Wed, 25 Jul 2018 11:18:25 +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 shrGroLezaJ7; Wed, 25 Jul 2018 11:18:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id C30FC8DB09; Wed, 25 Jul 2018 11:18:24 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 155EE1C0547 for ; Wed, 25 Jul 2018 11:18:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1328B8DB09 for ; Wed, 25 Jul 2018 11:18:24 +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 uwK1CivzTTXW for ; Wed, 25 Jul 2018 11:18:22 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.com.br (mx.datacom.ind.br [177.66.5.10]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5A96B8DACD for ; Wed, 25 Jul 2018 11:18:22 +0000 (UTC) Received: from mail.datacom.com.br (localhost [127.0.0.1]) by mail.datacom.com.br (Postfix) with ESMTPS id 311BF1BA0DDD for ; Wed, 25 Jul 2018 08:19:11 -0300 (-03) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.com.br (Postfix) with ESMTP id 1B3891BA0DCC for ; Wed, 25 Jul 2018 08:19:11 -0300 (-03) Received: from mail.datacom.com.br ([127.0.0.1]) by localhost (mail.datacom.com.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id hz4wJTkjxVeW for ; Wed, 25 Jul 2018 08:19:11 -0300 (-03) Received: from pedeld202344.datacom.net (pedeld202344.datacom.net [10.0.120.87]) by mail.datacom.com.br (Postfix) with ESMTPSA id E62EB1BA0DC3 for ; Wed, 25 Jul 2018 08:19:10 -0300 (-03) From: Carlos Santos To: buildroot@buildroot.org Date: Wed, 25 Jul 2018 08:18:10 -0300 Message-Id: <20180725111810.19587-1-casantos@datacom.com.br> X-Mailer: git-send-email 2.14.4 Subject: [Buildroot] [PATCH] gawk: install /usr/bin/awk as a relative symlink X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 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" Fixes: http://autobuild.buildroot.net/results/bf3937882023df7ed319dc76f1af10f79785112f/ Signed-off-by: Carlos Santos --- package/gawk/gawk.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gawk/gawk.mk b/package/gawk/gawk.mk index 1315abb9ee..7c93aefed6 100644 --- a/package/gawk/gawk.mk +++ b/package/gawk/gawk.mk @@ -34,7 +34,7 @@ endif HOST_GAWK_CONF_OPTS = --without-readline --without-mpfr define GAWK_CREATE_SYMLINK - ln -sf /usr/bin/gawk $(TARGET_DIR)/usr/bin/awk + ln -sf gawk $(TARGET_DIR)/usr/bin/awk endef GAWK_POST_INSTALL_TARGET_HOOKS += GAWK_CREATE_SYMLINK