summaryrefslogtreecommitdiff
path: root/sys-block/di/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-13 21:41:11 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-13 21:41:11 +0000
commitc8d60dada2ec8eb48b2d2b290cd6683ccec40e39 (patch)
treec44943ee0563a3fa957716de909fed683117fcb9 /sys-block/di/files
parent69051588e2f955485fe5d45d45e616bc60a2de57 (diff)
gentoo (valentine's day) resync : 14.02.2021
Diffstat (limited to 'sys-block/di/files')
-rw-r--r--sys-block/di/files/di-4.47-no_echo-n.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys-block/di/files/di-4.47-no_echo-n.patch b/sys-block/di/files/di-4.47-no_echo-n.patch
deleted file mode 100644
index ff6c2045f23f..000000000000
--- a/sys-block/di/files/di-4.47-no_echo-n.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Neither "echo -n" nor "echo ... \c" is POSIX compliant.
-
-See "man 1p echo" section "APPLICATION USAGE" or
-https://www.in-ulm.de/%7Emascheck/various/echo+printf/
-
---- di-4.47/mkconfig/bin/shellfuncs.sh
-+++ di-4.47/mkconfig/bin/shellfuncs.sh
-@@ -45,15 +45,7 @@
-
- test_echo () {
- # It was suggested to use printf().
-- # printf does not quite work the same in the Tru64 shell.
-- # Of course no one uses that any more...
-- _tEN='-n'
-- _tEC=''
-- if [ "`echo -n test`" = "-n test" ]; then
-- _tEN=''
-- _tEC='\c'
-- fi
-- eval 'putsnonl () { echo ${_tEN} "$*"${_tEC}; }'
-+ eval 'putsnonl () { printf '%s' "$*"; }'
- eval 'puts () { echo "$*"; }'
- }
-