aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-12-16 18:32:47 -0500
committerMike Frysinger <vapier@gentoo.org>2015-12-16 18:32:47 -0500
commit35525e096061c33b9c10cfb2b0312846b4b0b9fe (patch)
tree86dcb5db4756658c7a83652cd31fc1283ed5d9f0 /tests
parentenable travis build support (diff)
downloadpax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.tar.gz
pax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.tar.bz2
pax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.zip
use `sed -E -i.tmp` everywhere
POSIX is adding the -E flag to enable ERE behavior, and GNU/sed already supports this, as do various BSD systems (including OS X). While GNU makes the suffix to -i optional, POSIX/etc... do not, so make sure we always specify it.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/source/space2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/source/space b/tests/source/space
index 530c273..9626c0c 100755
--- a/tests/source/space
+++ b/tests/source/space
@@ -11,7 +11,7 @@ if [ $# != 1 ] ; then
EOF
fi
-sed -r '/[[:space:]]+$/s:[[:space:]]+$::' "$i" | \
+sed -E '/[[:space:]]+$/s:[[:space:]]+$::' "$i" | \
awk '{
if (NF == 0) {
while (NF == 0)