diff options
author | tv <tv@pkgsrc.org> | 2004-10-13 17:50:01 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-10-13 17:50:01 +0000 |
commit | 8b28fe88e561a6b1da669cdcbca369c68bd9d0ba (patch) | |
tree | da0027092c750f528da28a4a17f8ee5b753757c8 /mk/platform | |
parent | 0ea6c7e3071c790af986193df23fc721f08fb811 (diff) | |
download | pkgsrc-8b28fe88e561a6b1da669cdcbca369c68bd9d0ba.tar.gz |
Use /bin/test. The /bin/sh builtin has some bugs with symlinks.
Diffstat (limited to 'mk/platform')
-rw-r--r-- | mk/platform/Interix.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Interix.mk b/mk/platform/Interix.mk index a6a61350856..05ea8c99153 100644 --- a/mk/platform/Interix.mk +++ b/mk/platform/Interix.mk @@ -1,4 +1,4 @@ -# $NetBSD: Interix.mk,v 1.6 2004/10/13 15:31:31 tv Exp $ +# $NetBSD: Interix.mk,v 1.7 2004/10/13 17:50:01 tv Exp $ # # Variable definitions for the Interix operating system. @@ -69,7 +69,7 @@ SU?= /bin/su TAIL?= /bin/tail TAR?= ${LOCALBASE}/bin/tar TEE?= /bin/tee -TEST?= test # Shell builtin +TEST?= /bin/test # shell builtin has bugs with symlinks TOUCH?= /bin/touch TR?= /bin/tr TRUE?= true # Shell builtin |