diff options
author | Ted Gould <ted@gould.cx> | 2012-02-17 16:18:45 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-02-17 16:18:45 -0600 |
commit | f8ca95b2f833a22f559ccd101c612081a6a089a3 (patch) | |
tree | 70418cc37784f6f2a9c5c43639f1d2ec9723b5fc /build-aux/install-sh | |
parent | 6e60a40ec583b507aef6254a744631f30f9e072d (diff) | |
parent | 52d15e402e4ada9c8f1ee1f4b7e3a9ada473772c (diff) | |
download | ayatana-indicator-datetime-f8ca95b2f833a22f559ccd101c612081a6a089a3.tar.gz ayatana-indicator-datetime-f8ca95b2f833a22f559ccd101c612081a6a089a3.tar.bz2 ayatana-indicator-datetime-f8ca95b2f833a22f559ccd101c612081a6a089a3.zip |
* New upstream release.
* Still need to distribute these files even if we're not building it
* Adding some extra ignore stuff in
* Adding in code coverage calculation
* Allow ccpanel to be optional
* Move to use libtimezone map
* Add a name hint on the indicator
* Build fixes for updated dependencies
* Fixing Geoclue support
Diffstat (limited to 'build-aux/install-sh')
-rwxr-xr-x | build-aux/install-sh | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/build-aux/install-sh b/build-aux/install-sh index 6781b98..a9244eb 100755 --- a/build-aux/install-sh +++ b/build-aux/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2009-04-28.21; # UTC +scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -156,6 +156,10 @@ while test $# -ne 0; do -s) stripcmd=$stripprog;; -t) dst_arg=$2 + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac shift;; -T) no_target_directory=true;; @@ -186,6 +190,10 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then fi shift # arg dst_arg=$arg + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac done fi @@ -200,7 +208,11 @@ if test $# -eq 0; then fi if test -z "$dir_arg"; then - trap '(exit $?); exit' 1 2 13 15 + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. @@ -228,9 +240,9 @@ fi for src do - # Protect names starting with `-'. + # Protect names problematic for `test' and other utilities. case $src in - -*) src=./$src;; + -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then @@ -252,12 +264,7 @@ do echo "$0: no destination specified." >&2 exit 1 fi - dst=$dst_arg - # Protect names starting with `-'. - case $dst in - -*) dst=./$dst;; - esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. @@ -385,7 +392,7 @@ do case $dstdir in /*) prefix='/';; - -*) prefix='./';; + [-=\(\)!]*) prefix='./';; *) prefix='';; esac @@ -403,7 +410,7 @@ do for d do - test -z "$d" && continue + test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then |