aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/000-upstream-mktemp.patch
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-09-06 07:22:26 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-09-06 07:22:26 +0000
commit5510149e78cb9123c602fc7a1a0b4fde689ff464 (patch)
tree583c1a0c3a93fa72ed8d9b9cadaacc082c8dd783 /package/busybox/patches/000-upstream-mktemp.patch
parent7d045509fd704c9751fe1f01608d76bfbf951084 (diff)
downloadupstream-5510149e78cb9123c602fc7a1a0b4fde689ff464.tar.gz
upstream-5510149e78cb9123c602fc7a1a0b4fde689ff464.tar.bz2
upstream-5510149e78cb9123c602fc7a1a0b4fde689ff464.zip
package/busybox: update to busybox-1.7.2, include upstream patches, refresh patches
SVN-Revision: 22953
Diffstat (limited to 'package/busybox/patches/000-upstream-mktemp.patch')
-rw-r--r--package/busybox/patches/000-upstream-mktemp.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/patches/000-upstream-mktemp.patch b/package/busybox/patches/000-upstream-mktemp.patch
deleted file mode 100644
index a7727ca81f..0000000000
--- a/package/busybox/patches/000-upstream-mktemp.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/debianutils/mktemp.c
-+++ b/debianutils/mktemp.c
-@@ -50,7 +50,7 @@ int mktemp_main(int argc UNUSED_PARAM, c
- opts = getopt32(argv, "dqtp:", &path);
-
- chp = argv[optind] ? argv[optind] : xstrdup("tmp.XXXXXX");
-- if (chp[0] != '/' || (opts & 8))
-+ if (!strchr(chp, '/') || (opts & 8))
- chp = concat_path_file(path, chp);
-
- if (opts & 1) { /* -d */