diff options
author | jeff <jeff> | 2010-03-01 19:11:07 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-03-01 19:11:07 +0000 |
commit | 25dc62169de5347a156523db3e56c2f0575902bc (patch) | |
tree | 10ef5ff51a144f4307e0f8c344ab8b4b16e48ebc | |
parent | 4e09e3114c46d7133c29b94fc25ffec5899e7c24 (diff) |
get along better with RTless installs
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -362,12 +362,12 @@ create-rt: configure-rt || true install-rt: - [ ${RT_ENABLED} -eq 1 ] && ( cd rt; make install ) || true - [ ${RT_ENABLED} -eq 1 ] && perl -p -i -e "\ + if [ ${RT_ENABLED} -eq 1 ]; then ( cd rt; make install ); fi + if [ ${RT_ENABLED} -eq 1 ]; then 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_PATH}/etc/RT_SiteConfig.pm; fi clean: rm -rf masondocs |