diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-03-19 20:56:09 +0100 |
commit | 6a21d65d2840c58cfa7cd749a04669d8f7980646 (patch) | |
tree | 00b1aa153b69cda8cf9406c4700fd7730c34d3a5 /recipes/bash/files | |
parent | dcfe7349b369a87881cf1fa43085d9e9c5609fcf (diff) | |
parent | 6f854d71c347475d53d5080a5490625345d95d12 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/bash/files')
-rw-r--r-- | recipes/bash/files/builtins.patch | 13 | ||||
-rw-r--r-- | recipes/bash/files/default_path.patch | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/recipes/bash/files/builtins.patch b/recipes/bash/files/builtins.patch new file mode 100644 index 0000000000..d6881ac8a3 --- /dev/null +++ b/recipes/bash/files/builtins.patch @@ -0,0 +1,13 @@ +Index: bash-3.2/builtins/Makefile.in +=================================================================== +--- bash-3.2.orig/builtins/Makefile.in ++++ bash-3.2/builtins/Makefile.in +@@ -189,7 +189,7 @@ install: @HELPINSTALL@ + + mkbuiltins.o: ../config.h + mkbuiltins.o: mkbuiltins.c +- $(RM) $@ ++ echo $(RM) $@ + $(CC_FOR_BUILD) -c $(CCFLAGS_FOR_BUILD) $< + + mkbuiltins$(EXEEXT): mkbuiltins.o diff --git a/recipes/bash/files/default_path.patch b/recipes/bash/files/default_path.patch new file mode 100644 index 0000000000..7d87850965 --- /dev/null +++ b/recipes/bash/files/default_path.patch @@ -0,0 +1,12 @@ +diff -Naur bash-3.0.orig/config-top.h bash-3.0/config-top.h +--- bash-3.0.orig/config-top.h 2003-08-05 16:36:12.000000000 +0200 ++++ bash-3.0/config-top.h 2007-08-29 22:30:57.059985318 +0200 +@@ -52,7 +52,7 @@ + /* The default value of the PATH variable. */ + #ifndef DEFAULT_PATH_VALUE + #define DEFAULT_PATH_VALUE \ +- "/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:." ++ "/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin" + #endif + + /* The value for PATH when invoking `command -p'. This is only used when |