summaryrefslogtreecommitdiff
path: root/Config
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-17 20:16:55 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-17 20:16:55 +0000
commit2d72446860abac08dc4f36b10fde7536f7897956 (patch)
tree25dc114bb696bc8752d68e6e050da8d3dda5f282 /Config
parent1cd73b4dadb8e618a0ec56289408922be42aac8a (diff)
More CMake work, mostly to handle both *nix and Windows builds.
Also some tweaks to generation files (like version.sh) to take both input and output files as arguments, to handle CMake when it's used for an out-of-source build. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1836 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'Config')
-rwxr-xr-xConfig10
1 files changed, 5 insertions, 5 deletions
diff --git a/Config b/Config
index 74a32a8aa..37fb95300 100755
--- a/Config
+++ b/Config
@@ -100,7 +100,7 @@ DATDEST=$HOME/services
RUNGROUP=
UMASK=
DEBUG="no"
-RUN_CC_PL="no"
+USE_RUN_CC_PL="no"
CAN_QUICK="no"
###########################################################################
@@ -302,7 +302,7 @@ echo ""
####
TEMP_YN="n"
-if [ "$RUN_CC_PL" = "yes" ] ; then
+if [ "$USE_RUN_CC_PL" = "yes" ] ; then
TEMP_YN="y"
fi
echo "You can optionally have the build run through run-cc.pl, which will"
@@ -314,9 +314,9 @@ echo2 "[$TEMP_YN] "
read YN
if [ "$YN" ] ; then
if [ "$YN" = "y" ] ; then
- RUN_CC_PL="yes"
+ USE_RUN_CC_PL="yes"
else
- RUN_CC_PL="no"
+ USE_RUN_CC_PL="no"
fi
fi
echo ""
@@ -335,7 +335,7 @@ DATDEST="$DATDEST"
RUNGROUP="$RUNGROUP"
UMASK=$UMASK
DEBUG="$DEBUG"
-RUN_CC_PL="$RUN_CC_PL"
+USE_RUN_CC_PL="$USE_RUN_CC_PL"
EOT
echo "done."