summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2014-05-22 05:14:14 +0000
committerobache <obache@pkgsrc.org>2014-05-22 05:14:14 +0000
commit3763d11129c58ad8bde5cce3c8350f458de78af7 (patch)
tree3242bf0914301b2bb5c07a3d2e520eef457e75a3
parent87011eff5ece610b51072d83930627810c2e509f (diff)
downloadpkgsrc-3763d11129c58ad8bde5cce3c8350f458de78af7.tar.gz
Add curl and wget.
-rw-r--r--mk/tools/tools.Haiku.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/tools/tools.Haiku.mk b/mk/tools/tools.Haiku.mk
index 28d249d09c0..02200fe508c 100644
--- a/mk/tools/tools.Haiku.mk
+++ b/mk/tools/tools.Haiku.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.Haiku.mk,v 1.13 2014/05/20 09:55:12 obache Exp $
+# $NetBSD: tools.Haiku.mk,v 1.14 2014/05/22 05:14:14 obache Exp $
#
# System-supplied tools for the Haiku operating system.
@@ -27,6 +27,11 @@ TOOLS_PLATFORM.chown?= /bin/chown
TOOLS_PLATFORM.cmp?= /bin/cmp
TOOLS_PLATFORM.cp?= /bin/cp
TOOLS_PLATFORM.cut?= /bin/cut
+.if exists(/bin/curl)
+TOOLS_PLATFORM.curl?= /bin/curl
+.elif exists(/boot/common/bin/curl)
+TOOLS_PLATFORM.curl?= /boot/common/bin/curl
+.endif
TOOLS_PLATFORM.date?= /bin/date
TOOLS_PLATFORM.diff?= /bin/diff
TOOLS_PLATFORM.diff3?= /bin/diff3
@@ -147,6 +152,7 @@ TOOLS_PLATFORM.tsort?= /bin/tsort
TOOLS_PLATFORM.uniq?= /bin/uniq
TOOLS_PLATFORM.unzip?= /bin/unzip
TOOLS_PLATFORM.wc?= /bin/wc
+TOOLS_PLATFORM.wget?= /bin/wget
TOOLS_PLATFORM.xargs?= /bin/xargs -r
#TOOLS_PLATFORM.xgettext?= /usr/bin/xgettext
.if exists(/bin/xz)