From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 595AB15800F for ; Fri, 3 Feb 2023 13:51:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9ED4E0101; Fri, 3 Feb 2023 13:51:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92929E0101 for ; Fri, 3 Feb 2023 13:51:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA20A335CDF for ; Fri, 3 Feb 2023 13:51:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EACF75 for ; Fri, 3 Feb 2023 13:51:51 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1675432306.b4d38155bd64388eac4042a1a6b5e91cdbb55cae.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-openrc:master commit in: / X-VCS-Repository: proj/emacs-openrc X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: b4d38155bd64388eac4042a1a6b5e91cdbb55cae X-VCS-Branch: master Date: Fri, 3 Feb 2023 13:51:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 89abfe90-f7c0-4b15-98f2-243c2e6203dd X-Archives-Hash: 296139e24edf1ee2cd27a9153a2cc9b0 commit: b4d38155bd64388eac4042a1a6b5e91cdbb55cae Author: Maciej Barć gentoo org> AuthorDate: Fri Feb 3 13:51:46 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Feb 3 13:51:46 2023 +0000 URL: https://gitweb.gentoo.org/proj/emacs-openrc.git/commit/?id=b4d38155 Makefile: bugfix - FIND -> RM Signed-off-by: Maciej Barć gentoo.org> Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ecb9ff5..040ef89 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ ELS = $(wildcard $(PWD)/*.el) ELCS = $(ELS:.el=.elc) EMACS := emacs -FIND := rm -f +RM := rm -f EMACFLAGS := --batch -q --no-site-file -L $(PWD) EMACSCMD = $(EMACS) $(EMACFLAGS)