summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-01-24 12:18:39 +0300
committerAndrew Dolgov <[email protected]>2011-01-24 12:18:39 +0300
commit50ba64555df730e3fee9f38dc819a0bd9d6a9aa4 (patch)
tree490b63e024eda5633d88109a48fc71b5c85bfbfb /utils
parent906fc5b7a16078a119347810047c0295d598f63e (diff)
remove DB_PORT from the list of required config keywords (closes #310)
Diffstat (limited to 'utils')
-rwxr-xr-xutils/regen_config_checks.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/regen_config_checks.sh b/utils/regen_config_checks.sh
index 78f2dbfba..9e7737858 100755
--- a/utils/regen_config_checks.sh
+++ b/utils/regen_config_checks.sh
@@ -10,7 +10,7 @@ echo ");" >> $DESTINATION
echo -n "\$requred_defines = array( " >> $DESTINATION
-grep define\( config.php-dist | awk -F\' '{ print "*" $2 "*," }' | xargs echo -n | sed -e s/,$// -e s/*/\'/g >> $DESTINATION
+grep define\( config.php-dist | awk -F\' '{ print "*" $2 "*," }' | xargs echo -n | grep -v DB_PORT | sed -e s/,$// -e s/*/\'/g >> $DESTINATION
echo "); ?>" >> $DESTINATION