diff options
author | ivan <ivan> | 2010-01-03 02:54:42 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-01-03 02:54:42 +0000 |
commit | b0cfa107afc1e75b94de0d1de3206d324a9372ef (patch) | |
tree | 8b7b2e399af346dd4042f11fcae4d2335af229b7 | |
parent | 8ba2772e1646177dc8838ea1741f557c59a12aa9 (diff) |
fix RT_SiteConfig.pm substitution
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -361,12 +361,12 @@ create-rt: configure-rt || true install-rt: - perl -p -i -e "\ + [ ${RT_ENABLED} -eq 1 ] && ( cd rt; make install ) || true + [ ${RT_ENABLED} -eq 1 ] && perl -p -i -e "\ s'%%%RT_DOMAIN%%%'${RT_DOMAIN}'g;\ s'%%%RT_TIMEZONE%%%'${RT_TIMEZONE}'g;\ s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\ " ${RT_PATH}/etc/RT_SiteConfig.pm - [ ${RT_ENABLED} -eq 1 ] && ( cd rt; make install ) || true clean: rm -rf masondocs |