ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/install-sh
(Generate patch)

Comparing:
ircd-hybrid/install-sh (file contents), Revision 1028 by michael, Sun Nov 8 13:03:38 2009 UTC vs.
ircd-hybrid-8/install-sh (file contents), Revision 1156 by michael, Tue Aug 9 20:29:20 2011 UTC

# Line 1 | Line 1
1   #!/bin/sh
2   # install - install a program, script, or datafile
3  
4 < scriptversion=2009-04-28.21; # UTC
4 > scriptversion=2010-02-06.18; # UTC
5  
6   # This originates from X11R5 (mit/util/scripts/install.sh), which was
7   # later released in X11R6 (xc/config/util/install.sh) with the
# Line 200 | Line 200 | if test $# -eq 0; then
200   fi
201  
202   if test -z "$dir_arg"; then
203 <  trap '(exit $?); exit' 1 2 13 15
203 >  do_exit='(exit $ret); exit $ret'
204 >  trap "ret=129; $do_exit" 1
205 >  trap "ret=130; $do_exit" 2
206 >  trap "ret=141; $do_exit" 13
207 >  trap "ret=143; $do_exit" 15
208  
209    # Set umask so as not to create temps with too-generous modes.
210    # However, 'strip' requires both read and write access to temps.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines