[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/5] gnu: glibc/linux: Use /bin/sh instead of /bin/bash as the de
From: |
Leo Famulari |
Subject: |
[PATCH 4/5] gnu: glibc/linux: Use /bin/sh instead of /bin/bash as the default shell. |
Date: |
Thu, 5 Jan 2017 11:28:50 -0500 |
* gnu/packages/base.scm (glibc/linux)[arguments]: Use /bin/sh for scripts that
lack a shebang.
---
gnu/packages/base.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index bdd613aad..01e21f7c6 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -628,7 +628,7 @@ store.")
(substitute* (find-files "." "^paths\\.h$")
(("#define[[:blank:]]+_PATH_BSHELL[[:blank:]].*$")
(string-append "#define _PATH_BSHELL \""
- bash "/bin/bash\"\n")))
+ bash "/bin/sh\"\n")))
;; Nscd uses __DATE__ and __TIME__ to create a string to
;; make sure the client and server come from the same
--
2.11.0
- [PATCH 0/5] Clean-up of /bin/sh patching, Leo Famulari, 2017/01/05
- [PATCH 1/5] gnu: m4: Don't replace 'sh' reference with 'bash'., Leo Famulari, 2017/01/05
- [PATCH 5/5] gnu: gawk: Don't replace 'sh' reference with 'bash'., Leo Famulari, 2017/01/05
- [PATCH 4/5] gnu: glibc/linux: Use /bin/sh instead of /bin/bash as the default shell.,
Leo Famulari <=
- [PATCH 2/5] gnu: gnu-make: Don't replace 'sh' reference with 'bash'., Leo Famulari, 2017/01/05
- [PATCH 3/5] gnu: glibc/linux: Don't replace 'sh' reference with 'bash'., Leo Famulari, 2017/01/05
- Re: [PATCH 0/5] Clean-up of /bin/sh patching, Marius Bakke, 2017/01/05