diff options
-rw-r--r-- | cad/lc/Makefile | 4 | ||||
-rw-r--r-- | devel/SOPE/Makefile | 4 | ||||
-rw-r--r-- | lang/gcc34/preconfigure.mk | 2 | ||||
-rw-r--r-- | mail/roundcube/Makefile | 4 | ||||
-rw-r--r-- | sysutils/pv/Makefile | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/cad/lc/Makefile b/cad/lc/Makefile index 65f07da4211..5cca6833029 100644 --- a/cad/lc/Makefile +++ b/cad/lc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2012/09/16 15:26:29 cheusov Exp $ +# $NetBSD: Makefile,v 1.17 2013/04/06 04:11:44 rodent Exp $ DISTNAME= lc # overridden below PKGNAME= lc-${LCVER} @@ -60,7 +60,7 @@ INSTALLATION_DIRS= bin share do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/lc ${DESTDIR}${PREFIX}/bin/lc ${INSTALL_PROGRAM} ${WRKSRC}/bin/lcplot ${DESTDIR}${PREFIX}/bin/lcplot - if test -f ${WRKSRC}/bin/spice ; then ${INSTALL_PROGRAM} ${WRKSRC}/bin/spice ${DESTDIR}${PREFIX}/bin/lcspice ; fi + if ${TEST} -f ${WRKSRC}/bin/spice ; then ${INSTALL_PROGRAM} ${WRKSRC}/bin/spice ${DESTDIR}${PREFIX}/bin/lcspice ; fi # remove cat pages after extraction but before installation cd ${DESTDIR}${PREFIX}/share && \ ${TAR} -zxf ${DISTDIR}/${DIST_SUBDIR}/lc_doc.tar.gz && \ diff --git a/devel/SOPE/Makefile b/devel/SOPE/Makefile index 616cfc86481..13aa17055ca 100644 --- a/devel/SOPE/Makefile +++ b/devel/SOPE/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2013/03/16 15:04:10 taca Exp $ +# $NetBSD: Makefile,v 1.13 2013/04/06 04:11:44 rodent Exp $ # DISTNAME= SOPE-2.0.4b @@ -19,7 +19,7 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-gnustep --enable-debug --disable-strip pre-configure: - test -e ${BUILDLINK_DIR}/lib/libmysqlclient.so || \ + ${TEST} -e ${BUILDLINK_DIR}/lib/libmysqlclient.so || \ ${LN} -s ${BUILDLINK_DIR}/lib/mysql/libmysqlclient.so \ ${BUILDLINK_DIR}/lib/libmysqlclient.so diff --git a/lang/gcc34/preconfigure.mk b/lang/gcc34/preconfigure.mk index 5b7dd6330ae..2b47fd5a20c 100644 --- a/lang/gcc34/preconfigure.mk +++ b/lang/gcc34/preconfigure.mk @@ -1,5 +1,5 @@ # Create compiler driver scripts in ${WRKDIR}. - (test -d ${WRKDIR}/.gcc/bin || ${MKDIR} ${WRKDIR}/.gcc/bin) + (${TEST} -d ${WRKDIR}/.gcc/bin || ${MKDIR} ${WRKDIR}/.gcc/bin) (cd ${BUILDLINK_PREFIX.gcc34}/bin && bin_files=`${LS} *` && \ cd ${WRKDIR}/.gcc/bin && \ for _target_ in $${bin_files} ; do \ diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile index 58d54aebdf6..659e2d2fc6a 100644 --- a/mail/roundcube/Makefile +++ b/mail/roundcube/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2013/03/28 17:24:39 taca Exp $ +# $NetBSD: Makefile,v 1.54 2013/04/06 04:11:44 rodent Exp $ DISTNAME= roundcubemail-0.8.6-dep PKGNAME= ${DISTNAME:S/mail-/-/:S/-dep//} @@ -131,7 +131,7 @@ do-install: .for f in ${CONF_PLUGINS} ${MKDIR} ${DESTDIR}${EGDIR}/plugins/${f} - test -f ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php || \ + ${TEST} -f ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php || \ ${MV} ${DESTDIR}${RCDIR}/plugins/${f}/config.inc.php.dist \ ${DESTDIR}${EGDIR}/plugins/${f}/config.inc.php .endfor diff --git a/sysutils/pv/Makefile b/sysutils/pv/Makefile index 4da5f250da1..ceb3e7bae2a 100644 --- a/sysutils/pv/Makefile +++ b/sysutils/pv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2012/10/23 19:51:20 asau Exp $ +# $NetBSD: Makefile,v 1.22 2013/04/06 04:11:44 rodent Exp $ # DISTNAME= pv-0.9.6 @@ -27,7 +27,7 @@ post-install: dir=${DOCDIR:S/^${PREFIX}\///:Q}; cd ${WRKSRC}/doc; \ ${GREP} "^$$dir/" ${PKGDIR}/PLIST | ${SED} "s|^$$dir/||" | \ while read file; do \ - test ! -f "$$file" || \ + ${TEST} ! -f "$$file" || \ ${INSTALL_DATA} "$$file" ${DESTDIR}${PREFIX}/$$dir; \ done ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR} |