diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-11-08 13:21:55 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-19 10:16:16 +0100 |
commit | d51948317bd6f9e49883e2bd494ff64a9cb60fb3 (patch) | |
tree | bcd8630863754930b6b9f1849bdab2b6288e3812 /package/bash/bash-4.1-mkbuiltins-cross.patch | |
parent | 3693cdb6e4e4d2e1ee264067a559cead2a553da7 (diff) |
bash: fix build issues reported by Dmitry Ivanov, update to pl9
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/bash/bash-4.1-mkbuiltins-cross.patch')
-rw-r--r-- | package/bash/bash-4.1-mkbuiltins-cross.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package/bash/bash-4.1-mkbuiltins-cross.patch b/package/bash/bash-4.1-mkbuiltins-cross.patch new file mode 100644 index 000000000..4252d5387 --- /dev/null +++ b/package/bash/bash-4.1-mkbuiltins-cross.patch @@ -0,0 +1,31 @@ +Let mkbuiltins use config.h even if cross compiling + +Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> +--- + builtins/mkbuiltins.c | 9 --------- + 1 files changed, 0 insertions(+), 9 deletions(-) + +diff --git a/builtins/mkbuiltins.c b/builtins/mkbuiltins.c +index cdd45e4..1349093 100644 +--- a/builtins/mkbuiltins.c ++++ b/builtins/mkbuiltins.c +@@ -19,16 +19,7 @@ + along with Bash. If not, see <http://www.gnu.org/licenses/>. + */ + +-#if !defined (CROSS_COMPILING) + # include <config.h> +-#else /* CROSS_COMPILING */ +-/* A conservative set of defines based on POSIX/SUS3/XPG6 */ +-# define HAVE_UNISTD_H +-# define HAVE_STRING_H +-# define HAVE_STDLIB_H +- +-# define HAVE_RENAME +-#endif /* CROSS_COMPILING */ + + #if defined (HAVE_UNISTD_H) + # ifdef _MINIX +-- +1.7.2.2 + |