pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk/tools



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Nov 22 09:09:19 UTC 2022

Modified Files:
        pkgsrc/mk/tools: tools.SunOS.mk

Log Message:
mk/tools: Switch to pwd builtin on SunOS.

pkgsrc switched to using /bin/pwd back in 2003 due to some undocumented errors
in buildlink2, but I don't see any failures with this in bulk builds and it
avoids a large number of unnecessary execs.  Limited to SunOS for now as that's
all I've tested, but other platforms are more than welcome to follow suit.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 pkgsrc/mk/tools/tools.SunOS.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/tools/tools.SunOS.mk
diff -u pkgsrc/mk/tools/tools.SunOS.mk:1.53 pkgsrc/mk/tools/tools.SunOS.mk:1.54
--- pkgsrc/mk/tools/tools.SunOS.mk:1.53 Tue Nov 22 09:06:08 2022
+++ pkgsrc/mk/tools/tools.SunOS.mk      Tue Nov 22 09:09:19 2022
@@ -1,4 +1,4 @@
-# $NetBSD: tools.SunOS.mk,v 1.53 2022/11/22 09:06:08 jperkin Exp $
+# $NetBSD: tools.SunOS.mk,v 1.54 2022/11/22 09:09:19 jperkin Exp $
 #
 # System-supplied tools for the Solaris and illumos operating systems.
 #
@@ -171,7 +171,7 @@ TOOLS_PLATFORM.openssl?=    /usr/bin/openss
 #TOOLS_PLATFORM.pod2man?=      /usr/perl5/bin/pod2man
 #.endif
 TOOLS_PLATFORM.printf?=                /bin/printf
-TOOLS_PLATFORM.pwd?=           /bin/pwd
+TOOLS_PLATFORM.pwd?=           pwd                     # shell builtin
 .if exists(/usr/gnu/bin/readelf)
 TOOLS_PLATFORM.readelf?=       /usr/gnu/bin/readelf
 .elif exists(/usr/sfw/bin/greadelf)



Home | Main Index | Thread Index | Old Index