From: Jim Meyering Date: Thu, 9 Dec 1999 15:52:49 +0000 (+0000) Subject: Use 1>&2 rather than `1<&-'. X-Git-Tag: FILEUTILS-4_0l~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb06f705a180e546607c27ba32c38dbebe18abb6;p=thirdparty%2Fcoreutils.git Use 1>&2 rather than `1<&-'. Suggestion from Volker Borchert. --- diff --git a/tests/cp/cp-mv-backup b/tests/cp/cp-mv-backup index b861248c8c..2437d5aef3 100755 --- a/tests/cp/cp-mv-backup +++ b/tests/cp/cp-mv-backup @@ -17,7 +17,9 @@ actual=$dir/actual expected=$dir/expected # Be careful to close $actual before removing the containing directory. -trap "cd $pwd; exec 1<&-; rm -rf $dir" 0 1 2 3 15 +# Use `1>&2' rather than `1<&-' since the latter appears not to work +# with /bin/sh from powerpc-ibm-aix4.2.0.0. +trap "cd $pwd; exec 1>&2; rm -rf $dir" 0 1 2 3 15 mkdir $dir unset VERSION_CONTROL SIMPLE_BACKUP_SUFFIX