diff options
author | Stanislav Brabec <utx@penguin.cz> | 2009-01-28 17:30:18 +0000 |
---|---|---|
committer | Autobuild <abuild@pwned.(none)> | 2009-01-29 11:50:18 +0000 |
commit | 7fcb561081ef66bfbd46ad682adeec2a6e859521 (patch) | |
tree | 64baa9b875f23a1c3284a1008d64174137ad1f2e /packages/mysql | |
parent | a3e236ed4807f5ae76c373984890ec60bad08628 (diff) |
mysql: Provide config cache for ps checks:
* Scripts need target ps, not build host ps.
* It makes possible to build it on host chroots without /proc mounted.
Diffstat (limited to 'packages/mysql')
-rw-r--r-- | packages/mysql/mysql_4.1.22.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/mysql/mysql_4.1.22.bb b/packages/mysql/mysql_4.1.22.bb index 8d7f4057f6..5d5900c6d2 100644 --- a/packages/mysql/mysql_4.1.22.bb +++ b/packages/mysql/mysql_4.1.22.bb @@ -8,6 +8,7 @@ PR = "r2" SRC_URI = "http://downloads.mysql.com/archives/mysql-4.1/mysql-${PV}.tar.gz \ file://autofoo.patch;patch=1 \ file://fix_host_path.patch;patch=1 \ + file://configure-ps-cache-check.patch;patch=1 \ file://my.cnf \ file://mysqld.sh" @@ -23,6 +24,8 @@ INITSCRIPT_PACKAGES = "mysql-server" INITSCRIPT_NAME = "mysqld" INITSCRIPT_PARAMS = "start 45 S . stop 45 0 6 1 ." +export ac_cv_path_PS=/bin/ps +export ac_cv_FIND_PROC="/bin/ps p \$\$PID | grep -v grep | grep mysqld > /dev/null" PARALLEL_MAKE = " " #EXTRA_OEMAKE = "'GEN_LEX_HASH=${STAGING_BINDIR_NATIVE}/gen_lex_hash'" EXTRA_OECONF = " --with-embedded-server --prefix=/usr --sysconfdir=/etc/mysql --localstatedir=/var/mysql --datadir=/var/mysql --disable-dependency-tracking --without-raid --without-debug --with-low-memory --without-query-cache --without-man --without-docs --without-innodb " |