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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 525E2138334 for ; Sat, 7 Sep 2019 09:39:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29689E0AA1; Sat, 7 Sep 2019 09:39:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 114EDE0AA1 for ; Sat, 7 Sep 2019 09:39:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04E1234A9E5 for ; Sat, 7 Sep 2019 09:39:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41D184D3 for ; Sat, 7 Sep 2019 09:39:12 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1567849013.6032199022e3af4140afaf2f3f3efb0de07db24a.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: / X-VCS-Repository: proj/gcc-config X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 6032199022e3af4140afaf2f3f3efb0de07db24a X-VCS-Branch: master Date: Sat, 7 Sep 2019 09:39:12 +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: 21358fe2-8664-45b2-b36f-81e390910647 X-Archives-Hash: 33d2f325a9c1542167f972bdf133764a commit: 6032199022e3af4140afaf2f3f3efb0de07db24a Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Sep 7 09:36:53 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Sep 7 09:36:53 2019 +0000 URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=60321990 Makefile: install README Signed-off-by: Sergei Trofimovich gentoo.org> Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3e9e5a3..b6d694c 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,9 @@ P = $(PN)-$(PV) PREFIX = $(EPREFIX)/usr BINDIR = $(PREFIX)/bin +DOCDIR = $(PREFIX)/share/doc/$(P) ESELECTDIR = $(PREFIX)/share/eselect/modules + SUBLIBDIR = lib LIBDIR = $(PREFIX)/$(SUBLIBDIR) @@ -33,9 +35,10 @@ clean: chmod a+rx $@ install: all - $(MKDIR_P) $(DESTDIR)$(BINDIR) $(DESTDIR)$(ESELECTDIR) + $(MKDIR_P) $(DESTDIR)$(BINDIR) $(DESTDIR)$(ESELECTDIR) $(DESTDIR)$(DOCDIR) $(INSTALL_EXE) .gcc-config $(DESTDIR)$(BINDIR)/gcc-config $(INSTALL_DATA) gcc.eselect $(DESTDIR)$(ESELECTDIR) + $(INSTALL_DATA) README $(DESTDIR)$(DOCDIR) test check: .gcc-config cd tests && ./run_tests