diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 22:52:34 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 22:52:34 +0000 |
commit | 9268f753e21898a67bb74ede36d530307cc682ea (patch) | |
tree | eb11ab477de3c78a24681e77f160cba9539575a9 /openwrt/package/mysql/Makefile | |
parent | 7c8d73ced43bb114b0eb58643711d5bb6b32e034 (diff) |
update mysql to 5.0 (fix #9)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2889 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/mysql/Makefile')
-rw-r--r-- | openwrt/package/mysql/Makefile | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/openwrt/package/mysql/Makefile b/openwrt/package/mysql/Makefile index 055e265cd..ab8d6e500 100644 --- a/openwrt/package/mysql/Makefile +++ b/openwrt/package/mysql/Makefile @@ -3,16 +3,15 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mysql -PKG_VERSION:=4.0.24 -PKG_RELEASE:=2 -PKG_MD5SUM:=408d3001ed715ddc90009c247e548638 +PKG_VERSION:=5.0.18 +PKG_RELEASE:=1 +PKG_MD5SUM:=f18153b0239aaa03fc5a751f2d82cb71 PKG_SOURCE_URL:=\ - http://netmirror.org/mirror/mysql.com/Downloads/MySQL-4.0/ \ - http://mysql.he.net/Downloads/MySQL-4.0/ \ - http://www.linorg.usp.br/mysql/Downloads/MySQL-4.0/ \ - http://mysql.planetmirror.com/Downloads/MySQL-4.0/ \ - http://mysql.holywar.net/Downloads/MySQL-4.0/ + http://mysql.planetmirror.com/Downloads/MySQL-5.0/ \ + http://mysql.he.net/Downloads/MySQL-5.0/ \ + http://www.linorg.usp.br/mysql/Downloads/MySQL-5.0/ \ + http://mysql.holywar.net/Downloads/MySQL-5.0/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_CAT:=zcat @@ -86,13 +85,17 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.built: rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C "$(PKG_BUILD_DIR)" \ + SUBDIRS="include" \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install $(MAKE) -C "$(PKG_BUILD_DIR)/libmysql" \ CC="$(HOSTCC)" \ LINK="$(HOSTCC) -o conf_to_src -lc" \ CFLAGS="" \ conf_to_src $(MAKE) -C "$(PKG_BUILD_DIR)" \ - SUBDIRS="include libmysql" \ + SUBDIRS="libmysql" \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install $(MAKE) -C "$(PKG_BUILD_DIR)" \ |