From eb06f705a180e546607c27ba32c38dbebe18abb6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 9 Dec 1999 15:52:49 +0000 Subject: Use 1>&2 rather than `1<&-'. Suggestion from Volker Borchert. --- tests/cp/cp-mv-backup | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/cp/cp-mv-backup') diff --git a/tests/cp/cp-mv-backup b/tests/cp/cp-mv-backup index b861248c8..2437d5aef 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 -- cgit v1.2.3-70-g09d2