~ubuntu-branches/ubuntu/gutsy/mysql-dfsg-5.0/gutsy

« back to all changes in this revision

Viewing changes to scripts/make_binary_distribution.sh

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-03 09:43:01 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070403094301-fnjhfr59hu72pvtg
Tags: 5.0.38-0ubuntu1
* Package the Enterprise version again (.37 was a community version), since
  Debian and we have always done so. This brings in a few more bug fixes and
  makes functional derivations less likely.
* debian/README.Maintainer: Add pointer to upstream download URL, since it
  is very hard to find the Enterprise versions.
* Disable 33_scripts__mysql_create_system_tables__no_test.dpatch, since that
  script was removed upstream.
* debian/patches/41_scripts__mysql_install_db.sh__no_test.dpatch: Adapted to
  changed formatting in new upstream version.
* Remove debian/patches/86_PATH_MAX.dpatch, fixed upstream.
* Add debian/patches/90_org_tables_definition.dpatch: Fix local variable
  declaration in libmysqld/sql_parse.cc to fix compilation with
  EMBEDDED_LIBRARY.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
  extra/resolve_stack_dump$BS extra/mysql_waitpid$BS \
144
144
  myisam/myisamchk$BS myisam/myisampack$BS myisam/myisamlog$BS \
145
145
  myisam/myisam_ftdump$BS \
146
 
  sql/mysqld$BS sql/mysql_tzinfo_to_sql$BS \
 
146
  sql/mysqld$BS sql/mysqld-debug$BS \
 
147
  sql/mysql_tzinfo_to_sql$BS \
147
148
  server-tools/instance-manager/mysqlmanager$BS \
148
149
  client/mysql$BS client/mysqlshow$BS client/mysqladmin$BS \
149
150
  client/mysqldump$BS client/mysqlimport$BS \
251
252
         netware/mysql_test_run.nlm netware/install_test_db.ncf
252
253
 
253
254
$CP mysql-test/lib/*.pl  $BASE/mysql-test/lib
254
 
$CP mysql-test/lib/*.sql $BASE/mysql-test/lib
255
255
$CP mysql-test/t/*.def $BASE/mysql-test/t
256
256
$CP mysql-test/include/*.inc $BASE/mysql-test/include
257
257
$CP mysql-test/include/*.test $BASE/mysql-test/include
298
298
# Copy system dependent files
299
299
#
300
300
if [ $BASE_SYSTEM = "netware" ] ; then
301
 
  echo "CREATE DATABASE mysql;" > $BASE/bin/init_db.sql
302
 
  echo "CREATE DATABASE test;" >> $BASE/bin/init_db.sql
303
 
  sh ./scripts/mysql_create_system_tables.sh real "" "%" 0 \
304
 
      >> $BASE/bin/init_db.sql
305
 
  sh ./scripts/mysql_create_system_tables.sh test "" "%" 0 \
306
 
      > $BASE/bin/test_db.sql
307
301
  ./scripts/fill_help_tables < ./Docs/manual.texi >> ./netware/init_db.sql
308
302
fi
309
303