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 | 943cd2ba00a6c9ac662f5718fd8a9486d16d9070 (patch) | |
tree | ec9c3459f3d75800c35364c49789525088b9ad3c /print/texfamily | |
parent | 275551e491954be0c23d27c62b61cf866eb55c4c (diff) | |
download | pkgsrc-943cd2ba00a6c9ac662f5718fd8a9486d16d9070.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 'print/texfamily')
-rw-r--r-- | print/texfamily/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/texfamily/Makefile b/print/texfamily/Makefile index 84a008f94d7..76ed3e8bed6 100644 --- a/print/texfamily/Makefile +++ b/print/texfamily/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/03/26 02:27:52 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2004/05/23 15:09:06 heinz Exp $ DISTNAME= TeXfamily-1.2.1 PKGREVISION= 5 @@ -82,9 +82,9 @@ TEXFAMILY_DVIPSVERSION= 1.5g TEXFAMILY_MENDEXVERSION=2.5 pre-extract: - if [ ! -e ${WRKSRC} ]; then \ + if [ ! -r ${WRKSRC} ]; then \ cd ../../print/teTeX1-bin && ${MAKE} patch; \ - elif [ ! -e ${WRKSRC}/texk/texfam.ac ]; then \ + elif [ ! -r ${WRKSRC}/texk/texfam.ac ]; then \ cd ../../print/teTeX1-bin && ${MAKE} clean; ${MAKE} patch; \ fi |