From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 963D01389E2 for ; Tue, 23 Dec 2014 09:55:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FD78E085D; Tue, 23 Dec 2014 09:55:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7567E085D for ; Tue, 23 Dec 2014 09:55:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39BF23405F0 for ; Tue, 23 Dec 2014 09:55:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA64AD2F5 for ; Tue, 23 Dec 2014 09:55:42 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1419328756.09a669fa7de086dd995d71c48614d3868d487451.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:eselect-emacs commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog Makefile X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 09a669fa7de086dd995d71c48614d3868d487451 X-VCS-Branch: eselect-emacs Date: Tue, 23 Dec 2014 09:55:42 +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-Archives-Salt: 781b545f-99da-4fe7-a0e5-7181549b287d X-Archives-Hash: 6131b34cec0e629f6d3d04bbe8b69fb9 commit: 09a669fa7de086dd995d71c48614d3868d487451 Author: Ulrich Müller gentoo org> AuthorDate: Tue Dec 23 09:59:16 2014 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Dec 23 09:59:16 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=09a669fa Simplify Makefile. * Makefile (all): Explicitly depend on etags.eselect. (MODULES, MANPAGES): Remove variables. --- ChangeLog | 5 +++++ Makefile | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 74d87b7..897e2e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-12-23 Ulrich Müller + + * Makefile (all): Explicitly depend on etags.eselect. + (MODULES, MANPAGES): Remove variables. + 2014-12-19 Ulrich Müller * Version 1.18 released. diff --git a/Makefile b/Makefile index 8017391..f89ad59 100644 --- a/Makefile +++ b/Makefile @@ -6,16 +6,14 @@ PV = $(shell sed '/^[ \t]*VERSION=/!d;s/.*="\?\([^ \t"]*\).*/\1/;q' \ emacs.eselect) P = $(PN)-$(PV) -MODULES = emacs.eselect ctags.eselect etags.eselect gnuclient.eselect -MANPAGES = emacs.eselect.5 ctags.eselect.5 etags.eselect.5 gnuclient.eselect.5 - DISTFILES = emacs.eselect ctags.eselect gnuclient.eselect \ emacs.eselect.5 ctags.eselect.5 etags.eselect.5 gnuclient.eselect.5 \ ChangeLog Makefile + .PHONY: all dist clean -all: $(MODULES) $(MANPAGES) +all: etags.eselect etags.eselect: ctags.eselect sed -e "/^CTAGS=/s/ctags/etags/" $< >$@