diff options
-rwxr-xr-x | Build-tools/mysql-copyright | 2 | ||||
-rw-r--r-- | support-files/Makefile.am | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Build-tools/mysql-copyright b/Build-tools/mysql-copyright index 84e13d6041e..ad4547b493c 100755 --- a/Build-tools/mysql-copyright +++ b/Build-tools/mysql-copyright @@ -120,7 +120,7 @@ sub main open(CONFIGURE,">configure.in") or die "$! Unable to open configure.in to write to!\n"; print CONFIGURE $configure; close(CONFIGURE); - `autoconf`; + `aclocal && autoheader && aclocal && automake && autoconf`; if (! -f "configure") { print "\"./configure\" was not produced, exiting!\n"; exit(0); diff --git a/support-files/Makefile.am b/support-files/Makefile.am index 79ba6eec763..ddad52fbb2a 100644 --- a/support-files/Makefile.am +++ b/support-files/Makefile.am @@ -22,6 +22,7 @@ EXTRA_DIST = mysql.spec.sh \ my-medium.cnf.sh \ my-large.cnf.sh \ my-huge.cnf.sh \ + my-innodb-heavy-4G \ mysql-log-rotate.sh \ mysql.server.sh \ binary-configure.sh \ @@ -34,6 +35,7 @@ pkgdata_DATA = my-small.cnf \ my-medium.cnf \ my-large.cnf \ my-huge.cnf \ + my-innodb-heavy-4G.cnf \ mysql-log-rotate \ mysql-@VERSION@.spec \ binary-configure \ @@ -45,6 +47,7 @@ CLEANFILES = my-small.cnf \ my-medium.cnf \ my-large.cnf \ my-huge.cnf \ + my-innodb-heavy-4G.cnf \ mysql.spec \ mysql-@VERSION@.spec \ mysql-log-rotate \ |