[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
m4-1.4.4/install-sh
From: |
Tim Rice |
Subject: |
m4-1.4.4/install-sh |
Date: |
Tue, 11 Jul 2006 17:06:09 -0700 (PDT) |
The "trap - 0" statement in m4-1.4.4/install-sh is not portable.
....
UX:sh (install-sh): ERROR: -: Not found
....
This patch should do the trick.
----------------------
--- m4-1.4.4/install-sh.old 2005-10-20 02:51:03.000000000 -0700
+++ m4-1.4.4/install-sh 2006-07-11 17:00:04.415846012 -0700
@@ -389,7 +389,7 @@
}
} || exit 1
- trap - 0
+ trap 0
fi
done
----------------------
--
Tim Rice Multitalents (707) 887-1469
address@hidden
- m4-1.4.4/install-sh,
Tim Rice <=