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 749E9138CC5 for ; Sun, 22 Mar 2015 03:55:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E2C5E0899; Sun, 22 Mar 2015 03:55:34 +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 B4771E0899 for ; Sun, 22 Mar 2015 03:55:33 +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 58D33340A49 for ; Sun, 22 Mar 2015 03:55:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B56E61443C for ; Sun, 22 Mar 2015 03:55:28 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1426996196.e16b7183e90090ecee539697508582d208859a8b.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: mk/ X-VCS-Repository: proj/openrc X-VCS-Files: mk/os-GNU.mk X-VCS-Directories: mk/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: e16b7183e90090ecee539697508582d208859a8b X-VCS-Branch: master Date: Sun, 22 Mar 2015 03:55:28 +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: 3bf726ce-08a1-41ae-90ce-7fe3cd66a102 X-Archives-Hash: 56957cc80b3a03b16b0a18b3d18cfd43 commit: e16b7183e90090ecee539697508582d208859a8b Author: William Hubbs gmail com> AuthorDate: Sun Mar 22 03:49:56 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Mar 22 03:49:56 2015 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=e16b7183 mk/os-GNU.mk: fix typo MAX_PATH should have been PATH_MAX mk/os-GNU.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/os-GNU.mk b/mk/os-GNU.mk index bbaba2b..826202c 100644 --- a/mk/os-GNU.mk +++ b/mk/os-GNU.mk @@ -4,5 +4,5 @@ SFX= .GNU.in PKG_PREFIX?= /usr -CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -DMAXPATHLEN=4096 -DMAX_PATH=4096 +CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -DMAXPATHLEN=4096 -DPATH_MAX=4096 LIBDL= -Wl,-Bdynamic -ldl