diff options
author | jeff <jeff> | 2010-03-01 19:10:52 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-03-01 19:10:52 +0000 |
commit | c03e828b32cd5a4fd264f89d42a80a02edbfb5ea (patch) | |
tree | 2a7cf7666534e9921cdb302554358a3350d4c8f2 /Makefile | |
parent | 005237d2424b22ff9e73798868194d68e18b3f6d (diff) |
get along better with RTless installs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -367,12 +367,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 |