diff options
author | christos <christos@pkgsrc.org> | 1999-08-10 05:06:36 +0000 |
---|---|---|
committer | christos <christos@pkgsrc.org> | 1999-08-10 05:06:36 +0000 |
commit | e1b0f5cc9cb2225a2d53fe8ec9ea7f64144dd77c (patch) | |
tree | d526b258567236cfbd348109054d28954902d5a8 /mk | |
parent | 2184e265402ee358acd2523390cc078948ab15a5 (diff) | |
download | pkgsrc-e1b0f5cc9cb2225a2d53fe8ec9ea7f64144dd77c.tar.gz |
better linux support
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index c8c91a9d3cc..6ce67d2e62c 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.309 1999/08/09 05:32:12 sakamoto Exp $ +# $NetBSD: bsd.pkg.mk,v 1.310 1999/08/10 05:06:36 christos Exp $ # # This file is in the public domain. # @@ -141,6 +141,8 @@ MD5?= /sbin/md5 MD5?= /bin/md5 .elif exists(/usr/bin/md5) MD5?= /usr/bin/md5 +.elif exists(${LOCALBASE}/bsd/bin/md5) +MD5?= ${LOCALBASE}/bsd/bin/md5 .else MD5?= md5 .endif @@ -160,6 +162,8 @@ MAKE_ENV+= PATH=${PATH}:${LOCALBASE}/bin:${X11BASE}/bin PREFIX=${PREFIX} LOCALB .if exists(/usr/bin/fetch) FETCH_CMD?= /usr/bin/fetch +.elif exists(${LOCALBASE}/bsd/bin/ftp) +FETCH_CMD?= ${LOCALBASE}/bsd/bin/ftp .else FETCH_CMD?= /usr/bin/ftp .endif @@ -453,7 +457,7 @@ SETENV?= /usr/bin/env SH?= /bin/sh SU?= /bin/su TAIL?= /usr/bin/tail -TEST?= /bin/test +TEST?= /usr/bin/test TOUCH?= /bin/touch TR?= /usr/bin/tr TRUE?= /bin/true |