diff options
-rwxr-xr-x | src/modules/compile.sh | 37 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 5 insertions, 38 deletions
diff --git a/src/modules/compile.sh b/src/modules/compile.sh deleted file mode 100755 index 912780b65..000000000 --- a/src/modules/compile.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -# Disabled for Anope 1.6 until we figure out a better way to -# download modules safely. -# if [ "$1" = "getmods" ] ; then -# wget -nv -r -l 1 -A c -nd -nc http://modules.anope.org/download/ -# rm -f robots.txt -# exit 0 -# fi - -if [ ! -f ../Makefile.inc ]; then - echo "" - echo "*** ERROR: Unable to find ../Makefile.inc. You must ./configure Anope before" - echo "*** ERROR: compiling modules. Please read the INSTALL document for details." - echo "" - exit 1 -fi - -echo -n "SRCS=" > ./Makefile.inc -FIRST=1 -for oldfile in *.c -do - if [ "$FIRST" = 1 ] ; then - echo -n " "$oldfile >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo -n " " $oldfile >> ./Makefile.inc - fi - FIRST=0 -done -echo "" >> ./Makefile.inc - -make - -if [ "$1" = "install" ] ; then - make install -fi diff --git a/version.log b/version.log index 1d3dbe0a3..8ef01aa34 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="412" +VERSION_BUILD="414" # $Log$ # +# BUILD : 1.7.5 (414) +# BUGS : N/A +# NOTES : Deleted compile.sh as it wont work anymore anyway +# # BUILD : 1.7.5 (412) # BUGS : 169 # NOTES : A minor touch up to prevent issues |