summaryrefslogtreecommitdiffstats
path: root/package/bash/bash30-013
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-19 08:52:29 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-19 08:52:29 +0000
commitd4f0350c6da4a2a801f1e8ab28b8d914953a3d86 (patch)
tree5715ca140fdaeee387cb1ca42c2ab384d33bec5d /package/bash/bash30-013
parent229a26a76f789f1a68281ecb1154753888c32d61 (diff)
downloadbuildroot-novena-d4f0350c6da4a2a801f1e8ab28b8d914953a3d86.tar.gz
buildroot-novena-d4f0350c6da4a2a801f1e8ab28b8d914953a3d86.zip
update to bash-3.1
Diffstat (limited to 'package/bash/bash30-013')
-rw-r--r--package/bash/bash30-01369
1 files changed, 0 insertions, 69 deletions
diff --git a/package/bash/bash30-013 b/package/bash/bash30-013
deleted file mode 100644
index feee1ef44..000000000
--- a/package/bash/bash30-013
+++ /dev/null
@@ -1,69 +0,0 @@
-*** bash-3.0/bashline.c Mon Jul 5 23:22:12 2004
---- bash/bashline.c Thu Sep 2 16:00:12 2004
-***************
-*** 2514,2518 ****
- static int ind;
- int glen;
-! char *ret;
-
- if (state == 0)
---- 2545,2549 ----
- static int ind;
- int glen;
-! char *ret, *ttext;
-
- if (state == 0)
-***************
-*** 2524,2538 ****
- FREE (globtext);
-
- if (rl_explicit_arg)
- {
-! globorig = savestring (text);
-! glen = strlen (text);
- globtext = (char *)xmalloc (glen + 2);
-! strcpy (globtext, text);
- globtext[glen] = '*';
- globtext[glen+1] = '\0';
- }
- else
-! globtext = globorig = savestring (text);
-
- matches = shell_glob_filename (globtext);
---- 2555,2574 ----
- FREE (globtext);
-
-+ ttext = bash_tilde_expand (text, 0);
-+
- if (rl_explicit_arg)
- {
-! globorig = savestring (ttext);
-! glen = strlen (ttext);
- globtext = (char *)xmalloc (glen + 2);
-! strcpy (globtext, ttext);
- globtext[glen] = '*';
- globtext[glen+1] = '\0';
- }
- else
-! globtext = globorig = savestring (ttext);
-!
-! if (ttext != text)
-! free (ttext);
-
- matches = shell_glob_filename (globtext);
-
-*** bash-3.0/patchlevel.h Wed Aug 22 08:05:39 2001
---- bash/patchlevel.h Thu Sep 2 15:04:32 2004
-***************
-*** 26,30 ****
- looks for to find the patch level (for the sccs version string). */
-
-! #define PATCHLEVEL 12
-
- #endif /* _PATCHLEVEL_H_ */
---- 26,30 ----
- looks for to find the patch level (for the sccs version string). */
-
-! #define PATCHLEVEL 13
-
- #endif /* _PATCHLEVEL_H_ */