diff options
| author | Michael Forney <mforney@mforney.org> | 2019-11-04 21:02:34 -0800 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2019-11-04 23:52:01 -0800 |
| commit | b1896f59a59c61a1fccdae99f7fc089be7b526b0 (patch) | |
| tree | 8d6425e88bd8214c2650941c466962f1618fdf62 /pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch | |
| parent | 09cb647879b12dd8fee8a220dc2609e55bb0731d (diff) | |
Add standalone rc shell
Diffstat (limited to 'pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch')
| -rw-r--r-- | pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch b/pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch new file mode 100644 index 00000000..20edd9b6 --- /dev/null +++ b/pkg/rc/patch/0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch @@ -0,0 +1,28 @@ +From 56359f53946306347ef9bb1f8f3c402adb8f8a5b Mon Sep 17 00:00:00 2001 +From: Michael Forney <mforney@mforney.org> +Date: Mon, 4 Nov 2019 20:59:30 -0800 +Subject: [PATCH] Use /proc/self/fd/0 instead of /dev/fd/0 + +--- + rcmain.unix | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/rcmain.unix b/rcmain.unix +index 42b3be4..1b5d6d2 100644 +--- a/rcmain.unix ++++ b/rcmain.unix +@@ -25,9 +25,9 @@ if not if(flag i){ + if(flag l && test -r $profile) . $profile + status='' + if(! ~ $#* 0) . $* +- . -i /dev/fd/0 ++ . -i /proc/self/fd/0 + } +-if not if(~ $#* 0) . /dev/fd/0 ++if not if(~ $#* 0) . /proc/self/fd/0 + if not{ + status='' + . $* +-- +2.24.0 + |
