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 B05FF15800F for ; Fri, 3 Feb 2023 13:51:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7734AE0101; Fri, 3 Feb 2023 13:51:20 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F773E0101 for ; Fri, 3 Feb 2023 13:51:20 +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 57D64335CDF for ; Fri, 3 Feb 2023 13:51:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6B5A75 for ; Fri, 3 Feb 2023 13:51:17 +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: <1675432272.37fc8f69a4a61033ce82bbb9f8332aeb4eaf6af0.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-eix:master commit in: / X-VCS-Repository: proj/emacs-eix X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 37fc8f69a4a61033ce82bbb9f8332aeb4eaf6af0 X-VCS-Branch: master Date: Fri, 3 Feb 2023 13:51:17 +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: d45954a0-3d86-4a74-87f2-053272c20c10 X-Archives-Hash: c07ffa6b18e9e127e1a09ff0926e8c86 commit: 37fc8f69a4a61033ce82bbb9f8332aeb4eaf6af0 Author: Maciej Barć gentoo org> AuthorDate: Fri Feb 3 13:51:12 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Feb 3 13:51:12 2023 +0000 URL: https://gitweb.gentoo.org/proj/emacs-eix.git/commit/?id=37fc8f69 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)