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 /games/xpipeman | |
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 'games/xpipeman')
-rw-r--r-- | games/xpipeman/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/xpipeman/Makefile b/games/xpipeman/Makefile index ea70516293b..50c56e32239 100644 --- a/games/xpipeman/Makefile +++ b/games/xpipeman/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2004/01/20 12:15:42 agc Exp $ +# $NetBSD: Makefile,v 1.9 2004/05/23 15:09:06 heinz Exp $ # DISTNAME= xpipeman-1.5 @@ -17,7 +17,7 @@ do-install: ${X11PREFIX}/bin/xpipeman ${INSTALL_MAN} ${WRKSRC}/xpipeman.man ${X11PREFIX}/man/man6/xpipeman.6 ${INSTALL} -d -o bin -g games -m 0775 ${X11PREFIX}/share/xpipeman - if [ ! -e /var/games/xpipescores ]; then \ + if [ ! -r /var/games/xpipescores ]; then \ ${INSTALL} -o bin -g games -m 0664 ${WRKSRC}/xpipescores /var/games ; \ fi |