diff options
author | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 22:00:29 +0000 |
---|---|---|
committer | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 22:00:29 +0000 |
commit | eca163757efe24ba4b6eca2fcb2c4556d3322654 (patch) | |
tree | 715b1e266de171715e22b4af1d9d6ba73ff45d43 | |
parent | b916fcbc057759fbcd86a7d7b579878a4ff4305a (diff) |
An attempt to Prevent 'Is the same file' problems when doing a make config, when make config is now called, will copy files from /conf as .example files, will also put the examples from the doc dir there too, to make it easier to configure.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@911 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | .Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.Makefile.inc b/.Makefile.inc index b875defe0..8a2723b5d 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -33,7 +33,10 @@ echo " @cp src/inspircd \$(BINPATH)" >> Makefile echo "" >> Makefile echo "config:" >> Makefile if [ -n "$COPY_CONF" ] ; then -echo " @cp conf/* \$(CONPATH)" >> Makefile +echo " @cp conf/inspire.motd \$(CONPATH)/inspire.motd.example" >> Makefile +echo " @cp conf/inspire.quotes \$(CONPATH)/inspire.quotes.example" >> Makefile +echo " @cp conf/inspire.rules \$(CONPATH)/inspire.rules.example" >> Makefile +echo " @cp docs/*.example \$(CONPATH)" >> Makefile else echo " @echo \"*** Nothing to Be Done for make config\"" >> Makefile fi |