~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-headers/build-aux/install-sh

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# install - install a program, script, or datafile
3
3
 
4
 
scriptversion=2009-04-28.21; # UTC
 
4
scriptversion=2010-02-06.18; # UTC
5
5
 
6
6
# This originates from X11R5 (mit/util/scripts/install.sh), which was
7
7
# later released in X11R6 (xc/config/util/install.sh) with the
200
200
fi
201
201
 
202
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
204
208
 
205
209
  # Set umask so as not to create temps with too-generous modes.
206
210
  # However, 'strip' requires both read and write access to temps.