diff options
author | heinz <heinz> | 2004-05-23 15:09:06 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-05-23 15:09:06 +0000 |
commit | 5ba3b7582449bad0d219b531bce4df344b74dc8c (patch) | |
tree | ec9c3459f3d75800c35364c49789525088b9ad3c /multimedia/fxtv/Makefile | |
parent | d95ddf39a2e52c3815559260cc5b83800479ed46 (diff) | |
download | pkgsrc-5ba3b7582449bad0d219b531bce4df344b74dc8c.tar.gz |
Use option "-r" instead of "-e" for the '[' command since this is not
portable to some operating systems (eg UnixWare or IRIX 5).
Diffstat (limited to 'multimedia/fxtv/Makefile')
-rw-r--r-- | multimedia/fxtv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/fxtv/Makefile b/multimedia/fxtv/Makefile index a0362b56241..d2369d7df16 100644 --- a/multimedia/fxtv/Makefile +++ b/multimedia/fxtv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2004/04/18 07:08:47 snj Exp $ +# $NetBSD: Makefile,v 1.4 2004/05/23 15:09:06 heinz Exp $ DISTNAME= fxtv-1.03 PKGREVISION= 5 @@ -45,7 +45,7 @@ pre-configure: $${file} > $${file}.fixed; \ ${MV} -f $${file}.fixed $${file}; \ done - if [ -e /usr/include/machine/mouse.h ] ; then \ + if [ -r /usr/include/machine/mouse.h ] ; then \ echo '#define HAVE_MOUSE_H 1' > ${WRKSRC}/netbsdconf.h; \ else \ echo '#define HAVE_MOUSE_H 0' > ${WRKSRC}/netbsdconf.h; \ |