(12-03-2010 03:17 AM)RedX Wrote: During setup I had the problems that some files were not created in the folders.
For example, the during the installation the folder "database" isn't created in the /usr/local/etc/ispcp/ folder. And all *.sql files in this folder isn't created too.
Hi RedX, it looks like the BSDmakefile is wrong, could you please test the following:
/configs/common/BSDmakefile
PHP Code:
.ifdef $(OSTYPE)==FreeBSD
.include <../../Makefile.fbsd>
.else
.include <../../Makefile.inc>
.endif
install:
cp -R ./database $(SYSTEM_CONF)
cp -R ./pma $(SYSTEM_CONF)
uninstall:
rm -rf $(SYSTEM_CONF)/database
rm -rf $(SYSTEM_CONF)/pma
.PHONY: install uninstall