diff options
author | heinz <heinz@pkgsrc.org> | 2004-05-23 15:09:06 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-05-23 15:09:06 +0000 |
commit | ab369beb4f86166e2039fd9f12aecf1cab12a5d7 (patch) | |
tree | ec9c3459f3d75800c35364c49789525088b9ad3c /net | |
parent | 2b4fdcd185d271070f023445fc3782ab754f885b (diff) | |
download | pkgsrc-ab369beb4f86166e2039fd9f12aecf1cab12a5d7.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 'net')
-rw-r--r-- | net/ppp-mppe/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ppp-mppe/Makefile b/net/ppp-mppe/Makefile index 2745466940e..5ba3e558791 100644 --- a/net/ppp-mppe/Makefile +++ b/net/ppp-mppe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2004/03/31 10:24:50 cube Exp $ +# $NetBSD: Makefile,v 1.26 2004/05/23 15:09:06 heinz Exp $ DISTNAME= ppp-2.3.9 PKGNAME= ppp-mppe-2.3.9 @@ -25,7 +25,7 @@ MANCOMPRESSED_IF_MANZ= yes BUILD_DEFS+= MANINSTALL post-extract: - if [ ! -e ${OPENSSL_SRC}/crypto/rc4 ]; then \ + if [ ! -r ${OPENSSL_SRC}/crypto/rc4 ]; then \ cd ../../security/openssl && ${MAKE} extract; \ fi @${LN} -sf ${OPENSSL_SRC}/include/openssl ${WRKSRC}/pppd/openssl |