diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-21 22:08:30 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-21 22:08:30 +0000 |
commit | bb86fdcab2b31bc5d652006c523e25d699bacab1 (patch) | |
tree | 29bf054082947312f89460d19bbce09fb7715f56 /src | |
parent | 5f8650327760f547f354065ea468aed813ee5646 (diff) |
BUILD : 1.7.5 (414) BUGS : N/A NOTES : Deleted compile.sh as it wont work anymore anyway
git-svn-id: svn://svn.anope.org/anope/trunk@414 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@277 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rwxr-xr-x | src/modules/compile.sh | 37 |
1 files changed, 0 insertions, 37 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 |