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:   joerg
Date:           Mon Jul 10 12:32:30 UTC 2017

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

Log Message:
Deal with wc in /bin. From Thomas Orgis.


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 pkgsrc/mk/tools/tools.Linux.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.Linux.mk
diff -u pkgsrc/mk/tools/tools.Linux.mk:1.60 pkgsrc/mk/tools/tools.Linux.mk:1.61
--- pkgsrc/mk/tools/tools.Linux.mk:1.60 Wed Mar  9 22:27:29 2016
+++ pkgsrc/mk/tools/tools.Linux.mk      Mon Jul 10 12:32:30 2017
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Linux.mk,v 1.60 2016/03/09 22:27:29 tnn Exp $
+# $NetBSD: tools.Linux.mk,v 1.61 2017/07/10 12:32:30 joerg Exp $
 #
 # System-supplied tools for the Linux operating system.
 
@@ -265,7 +265,11 @@ TOOLS_PLATFORM.uniq?=              /bin/uniq
 .elif exists(/usr/bin/uniq)
 TOOLS_PLATFORM.uniq?=          /usr/bin/uniq
 .endif
+.if exists(/bin/wc)
+TOOLS_PLATFORM.wc?=            /bin/wc
+.elif exists(/usr/bin/wc)
 TOOLS_PLATFORM.wc?=            /usr/bin/wc
+.endif
 .if exists(/usr/bin/wget)
 TOOLS_PLATFORM.wget?=          /usr/bin/wget
 .endif



Home | Main Index | Thread Index | Old Index