diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-13 16:32:52 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-13 16:32:52 +0000 |
commit | be4f829719800b261f76ce5d7b492cf4097fbe27 (patch) | |
tree | efc29be74e4dfa907252608dca6553c2bcd48ac9 /package/busybox/busybox-1.12.2-getopt.patch | |
parent | 14520e6fa3dd68cd491af4c1423bb0fd91ac740e (diff) | |
download | buildroot-novena-be4f829719800b261f76ce5d7b492cf4097fbe27.tar.gz buildroot-novena-be4f829719800b261f76ce5d7b492cf4097fbe27.zip |
busybox: bump 1.12.x version
Diffstat (limited to 'package/busybox/busybox-1.12.2-getopt.patch')
-rw-r--r-- | package/busybox/busybox-1.12.2-getopt.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.12.2-getopt.patch b/package/busybox/busybox-1.12.2-getopt.patch new file mode 100644 index 000000000..bdc8b9327 --- /dev/null +++ b/package/busybox/busybox-1.12.2-getopt.patch @@ -0,0 +1,22 @@ +--- busybox-1.12.2/libbb/getopt32.c Sun Nov 9 18:20:37 2008 ++++ busybox-1.12.2-getopt/libbb/getopt32.c Wed Nov 12 23:03:33 2008 +@@ -515,6 +515,19 @@ + } + } + ++ /* In case getopt32 was already called: ++ * reset the libc getopt() function, which keeps internal state. ++ * run_nofork_applet_prime() does this, but we might end up here ++ * also via gunzip_main() -> gzip_main(). Play safe. ++ */ ++#ifdef __GLIBC__ ++ optind = 0; ++#else /* BSD style */ ++ optind = 1; ++ /* optreset = 1; */ ++#endif ++ /* optarg = NULL; opterr = 0; optopt = 0; - do we need this?? */ ++ + pargv = NULL; + + /* Note: just "getopt() <= 0" will not work well for |