From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PlaEr-0001Lw-LF for garchives@archives.gentoo.org; Sat, 05 Feb 2011 04:59:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED4E8E0827; Sat, 5 Feb 2011 04:59:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BFB35E0827 for ; Sat, 5 Feb 2011 04:59:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 540531B4109 for ; Sat, 5 Feb 2011 04:59:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B40B080074 for ; Sat, 5 Feb 2011 04:39:40 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: Subject: [gentoo-commits] proj/openrc:master commit in: mk/ X-VCS-Repository: proj/openrc X-VCS-Files: mk/depend-.mk mk/depend-gmake.mk mk/depend.mk X-VCS-Directories: mk/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: a2e9cde737ede93502a80fe50e62b0aea50643dc Date: Sat, 5 Feb 2011 04:39:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: d0f78577a1e89431bb14be58bf9aad66 commit: a2e9cde737ede93502a80fe50e62b0aea50643dc Author: William Hubbs gentoo org> AuthorDate: Wed Feb 2 22:42:17 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Feb 5 04:28:57 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Da2e9cde7 remove BSD make code to handle including .depend --- mk/depend-.mk | 2 -- mk/depend-gmake.mk | 3 --- mk/depend.mk | 7 +------ 3 files changed, 1 insertions(+), 11 deletions(-) diff --git a/mk/depend-.mk b/mk/depend-.mk deleted file mode 100644 index 9d13b52..0000000 --- a/mk/depend-.mk +++ /dev/null @@ -1,2 +0,0 @@ -# This space left intentionally blank because gmake does not load .depen= d -# by default diff --git a/mk/depend-gmake.mk b/mk/depend-gmake.mk deleted file mode 100644 index 947843e..0000000 --- a/mk/depend-gmake.mk +++ /dev/null @@ -1,3 +0,0 @@ -# Tell gmake to include the optional dependency file. -# This sucks, but I don't know any other way of portably making this wor= k. --include .depend diff --git a/mk/depend.mk b/mk/depend.mk index 067c1ef..44af378 100644 --- a/mk/depend.mk +++ b/mk/depend.mk @@ -10,9 +10,4 @@ IGNOREFILES+=3D .depend =20 depend: .depend extra_depend =20 -# Nasty hack. depend-.mk is a blank file, depend-gmake.mk has a gmake sp= ecific -# command to optionally include .depend. -# Someone should patch gmake to optionally include .depend if it exists. -_INC_DEP=3D $(shell if ${MAKE} --version | grep -q "^GNU "; then \ - echo "gmake"; else echo ""; fi) -include ${MK}/depend-${_INC_DEP}.mk +-include .depend