~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to scripts/mysql_install_db.sh

Deleted tons of pointless garbage from scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
# Set up paths to SQL scripts required for bootstrap
255
255
fill_help_tables="$pkgdatadir/fill_help_tables.sql"
256
256
create_system_tables="$pkgdatadir/mysql_system_tables.sql"
257
 
fill_system_tables="$pkgdatadir/mysql_system_tables_data.sql"
258
257
 
259
 
for f in $fill_help_tables $create_system_tables $fill_system_tables
 
258
for f in $fill_help_tables $create_system_tables 
260
259
do
261
260
  if test ! -f "$f"
262
261
  then
343
342
 
344
343
# Create the system and help tables by passing them to "mysqld --bootstrap"
345
344
s_echo "Installing MySQL system tables..."
346
 
if { echo "use mysql;"; cat $create_system_tables $fill_system_tables; } | eval "$filter_cmd_line" | $mysqld_install_cmd_line > /dev/null
 
345
if { echo "use mysql;"; cat $create_system_tables } | eval "$filter_cmd_line" | $mysqld_install_cmd_line > /dev/null
347
346
then
348
347
  s_echo "OK"
349
348
else