diff options
author | thierry <thierry@FreeBSD.org> | 2004-03-29 00:10:37 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-03-29 00:10:37 +0800 |
commit | 968a7f4aec9f798dea33dbdcef94c9534ab9c057 (patch) | |
tree | 51f40ac17b467167a6c6c90a24e275565c5c45c8 /devel | |
parent | a9ffc884e02b4ea07d6bc92cf20e8ff0987b31d5 (diff) | |
download | freebsd-ports-gnome-968a7f4aec9f798dea33dbdcef94c9534ab9c057.tar.gz freebsd-ports-gnome-968a7f4aec9f798dea33dbdcef94c9534ab9c057.tar.zst freebsd-ports-gnome-968a7f4aec9f798dea33dbdcef94c9534ab9c057.zip |
Fix sed when patterns contain ":".
Reported by: Troy <troy@twisted.net>
Approved by: mat (mentor).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/chora/Makefile | 2 | ||||
-rw-r--r-- | devel/horde-chora/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/chora/Makefile b/devel/chora/Makefile index 43bdb5a74413..69e801d12134 100644 --- a/devel/chora/Makefile +++ b/devel/chora/Makefile @@ -82,7 +82,7 @@ do-install: ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor - @${REINPLACE_CMD} -e "s:%%CVSROOT%%:${CVSROOT}:;s:%%CONFDIR%%:${CONFDIR}:" \ + @${REINPLACE_CMD} -e "s|%%CVSROOT%%|${CVSROOT}|;s|%%CONFDIR%%|${CONFDIR}|" \ ${CONFDIR}/cvsroots.php @${RM} ${CONFDIR}/cvsroots.php.beforeChora @${CHOWN} -R www:www ${CHORADIR} diff --git a/devel/horde-chora/Makefile b/devel/horde-chora/Makefile index 43bdb5a74413..69e801d12134 100644 --- a/devel/horde-chora/Makefile +++ b/devel/horde-chora/Makefile @@ -82,7 +82,7 @@ do-install: ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ fi .endfor - @${REINPLACE_CMD} -e "s:%%CVSROOT%%:${CVSROOT}:;s:%%CONFDIR%%:${CONFDIR}:" \ + @${REINPLACE_CMD} -e "s|%%CVSROOT%%|${CVSROOT}|;s|%%CONFDIR%%|${CONFDIR}|" \ ${CONFDIR}/cvsroots.php @${RM} ${CONFDIR}/cvsroots.php.beforeChora @${CHOWN} -R www:www ${CHORADIR} |