svn commit: r229034 - stable/8/usr.bin/make
Jilles Tjoelker
jilles at FreeBSD.org
Fri Dec 30 21:33:20 UTC 2011
Author: jilles
Date: Fri Dec 30 21:33:19 2011
New Revision: 229034
URL: http://svn.freebsd.org/changeset/base/229034
Log:
MFC r227121: make(1): obj dirs are physical paths so write `pwd -P`
rather than `pwd`.
Regular pwd may return a pathname containing symlinks, but make does not use
such pathnames.
Modified:
stable/8/usr.bin/make/make.1
Directory Properties:
stable/8/usr.bin/make/ (props changed)
Modified: stable/8/usr.bin/make/make.1
==============================================================================
--- stable/8/usr.bin/make/make.1 Fri Dec 30 21:27:51 2011 (r229033)
+++ stable/8/usr.bin/make/make.1 Fri Dec 30 21:33:19 2011 (r229034)
@@ -32,7 +32,7 @@
.\" @(#)make.1 8.8 (Berkeley) 6/13/95
.\" $FreeBSD$
.\"
-.Dd December 29, 2008
+.Dd November 5, 2011
.Dt MAKE 1
.Os
.Sh NAME
@@ -601,7 +601,7 @@ The following directories are tried in o
.Pp
.Bl -enum -compact
.It
-${MAKEOBJDIRPREFIX}/`pwd`
+${MAKEOBJDIRPREFIX}/`pwd -P`
.It
${MAKEOBJDIR}
.It
@@ -609,7 +609,7 @@ obj.${MACHINE}
.It
obj
.It
-/usr/obj/`pwd`
+/usr/obj/`pwd -P`
.El
.Pp
The first directory that
More information about the svn-src-all
mailing list