From patchwork Tue Feb 23 20:15:57 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 3913 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4DlVgG1lT9z3wwh for ; Tue, 23 Feb 2021 20:16:10 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4DlVgF0XRYz26Z; Tue, 23 Feb 2021 20:16:09 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4DlVgD5jGCz2yRM; Tue, 23 Feb 2021 20:16:08 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4DlVgC5z8pz2xjX; Tue, 23 Feb 2021 20:16:07 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4DlVgB6JZmz4s; Tue, 23 Feb 2021 20:16:06 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1614111367; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=KP/8t9j/nhpT+lPWMWuewperuijnGx72QyHqdT8Ryeg=; b=iLFxDGkaGSj1U6Th7xFpDnwymaFYl1noRnzjEbAUx8094iyv68T4JuBG/vUAzxUXHqlBqD AgGY8BCNwMkaOTDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1614111367; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=KP/8t9j/nhpT+lPWMWuewperuijnGx72QyHqdT8Ryeg=; b=nDYacBHpY7QRn99RejjL5kqGFC6rcidNqjiuBQyCY78WIY5KLh0bVHLOFkIhgvl3dUEiMG aIZh2OWENqM5HUIjITvPo+DwVVCKabg59H1kkHkAtv44m98xGQetmPPRzIXbi3pnb9z84k 0q845EROG+Qi63aHVhvU8skYAxMuo1CT7Wy2XsWtpx6PdAlDSfvE8VA2FA3JergXCajjmi XB2V2MB3M/w8LGw8HJp7PWRGIT4LCm2tqXdwvniCs2FxclnqT4oR/1Sks0CxWduBtxpRJr Mc22ajLUjxCm7w1/oh+n4HE8nZoj8rw/z1K2vp9IbsP9D7C3v7x1LlYPKyHznQ== From: Stefan Schantl To: location@lists.ipfire.org Subject: [PATCH] Makefile.am: Do not specify CC and LD when building perl module. Date: Tue, 23 Feb 2021 21:15:57 +0100 Message-Id: <20210223201557.28882-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 X-BeenThere: location@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: development@lists.ipfire.org Errors-To: location-bounces@lists.ipfire.org Sender: "Location" Specifing the CC and LD flags is not required because perl MakeMaker takes care of this. Fixes #12574. Signed-off-by: Stefan Schantl --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 52a4722..8da1f1b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -230,7 +230,7 @@ build-perl: cd $(builddir)/src/perl && $(PERL) Makefile.PL INSTALLDIRS=vendor \ INC="-I$(abs_srcdir)/src" LIBS="-L$(abs_builddir)/src/.libs -lloc" - cd $(builddir)/src/perl && $(MAKE) CC="$(CC)" LD="$(LD)" LD_RUN_PATH= + cd $(builddir)/src/perl && $(MAKE) LD_RUN_PATH="" .PHONY: check-perl check-perl: testdata.db