svn commit: r227121 - head/usr.bin/make

Jilles Tjoelker jilles at FreeBSD.org
Sat Nov 5 21:32:17 UTC 2011


Author: jilles
Date: Sat Nov  5 21:32:17 2011
New Revision: 227121
URL: http://svn.freebsd.org/changeset/base/227121

Log:
  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:
  head/usr.bin/make/make.1

Modified: head/usr.bin/make/make.1
==============================================================================
--- head/usr.bin/make/make.1	Sat Nov  5 21:16:39 2011	(r227120)
+++ head/usr.bin/make/make.1	Sat Nov  5 21:32:17 2011	(r227121)
@@ -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
@@ -631,7 +631,7 @@ The following directories are tried in o
 .Pp
 .Bl -enum -compact
 .It
-${MAKEOBJDIRPREFIX}/`pwd`
+${MAKEOBJDIRPREFIX}/`pwd -P`
 .It
 ${MAKEOBJDIR}
 .It
@@ -639,7 +639,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