diff options
author | ivan <ivan> | 2008-08-15 19:42:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-08-15 19:42:36 +0000 |
commit | 233ef9c25931dd63e690b402dcbeb1df275e540d (patch) | |
tree | 3486052c8f06d5ae8b935b5b0717ffd47dde4af9 /Makefile | |
parent | f4e4b7f1622821007984af8eb63ca865f413e344 (diff) |
install default conf with make create-config too, so it doesn't go missing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -313,6 +313,12 @@ create-config: install-perl-modules mkdir "${FREESIDE_EXPORT}/export.${DATASOURCE}" chown freeside "${FREESIDE_EXPORT}/export.${DATASOURCE}" + #install this for freeside-setup + install -d $(DIST_CONF) + #install conf/[a-z]* $(DEFAULT_CONF) + #CVS is not [a-z] + install `ls -d conf/[a-z]* | grep -v CVS` $(DIST_CONF) + configure-rt: cd rt; \ cp config.layout.in config.layout; \ |