summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-02-04 08:41:37 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-02-04 08:41:37 +0000
commitc69b535a6bad7467f52d025dae1b5c77f0f77830 (patch)
tree07e903089468168640f53c89483bbb6d32ec540b /package
parent5638c57607fcad22cb321a0c9e621e68f9a15d49 (diff)
upgrade to busybox 1.4.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6261 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/busybox/Makefile4
-rw-r--r--package/busybox/patches/100-syslogd_segfault_fix.patch11
2 files changed, 2 insertions, 13 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index c1944722e..530b02767 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -9,13 +9,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=busybox
-PKG_VERSION:=1.4.0
+PKG_VERSION:=1.4.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.busybox.net/downloads \
http://distfiles.gentoo.org/distfiles/
-PKG_MD5SUM:=f24a3c1e08bc55ec44381d588e8bcced
+PKG_MD5SUM:=5728403bce309cdabcffa414e2e64052
PKG_CAT:=bzcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
diff --git a/package/busybox/patches/100-syslogd_segfault_fix.patch b/package/busybox/patches/100-syslogd_segfault_fix.patch
deleted file mode 100644
index 80425e32d..000000000
--- a/package/busybox/patches/100-syslogd_segfault_fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- busybox-1.4.0/libbb/xreadlink.c Fri Jan 19 22:23:06 2007
-+++ busybox-1.4.0-syslogd-n/libbb/xreadlink.c Tue Jan 23 22:35:45 2007
-@@ -36,7 +36,7 @@
-
- char *xmalloc_realpath(const char *path)
- {
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- /* glibc provides a non-standard extension */
- return realpath(path, NULL);
- #else