diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/privoxy/INSTALL | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/privoxy/INSTALL b/www/privoxy/INSTALL index 751404e374c..5ca5a7d8cdb 100644 --- a/www/privoxy/INSTALL +++ b/www/privoxy/INSTALL @@ -1,16 +1,16 @@ #!@SH@ # -# $NetBSD: INSTALL,v 1.1.1.1 2003/06/16 03:02:04 kim Exp $ +# $NetBSD: INSTALL,v 1.2 2003/11/05 10:45:29 agc Exp $ EGDIR="@EGDIR@" case "${STAGE}" in POST-INSTALL) - cd ${PKG_SYSCONFDIR} && - ${LN} -s ${EGDIR}/templates + (cd ${PKG_SYSCONFDIR} && + ${LN} -s ${EGDIR}/templates) ;; DEINSTALL) - cd ${PKG_SYSCONFDIR} && - ${RM} -f templates + (cd ${PKG_SYSCONFDIR} && + ${RM} -f templates) ;; esac |