~ubuntu-branches/ubuntu/raring/blam/raring-proposed

« back to all changes in this revision

Viewing changes to install-sh

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-03-14 14:57:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060314145731-8ksmc4mhwzk3bn1j
Tags: 1.8.2+cvs20060124-0ubuntu1
* New CVS snapshot
* egg-sharp.diff:
  + Fix the TrayIcon breakage by replacing it with generic TrayIcon
    implementation used by banshee, beagle, etc
* firefox.diff:
  + Fix build with firefox 1.5
    (Closes: Malone #4839, #5354, #5876, #32758, #34368, #34581)
* gtk-sharp2.diff:
  + Build with Gtk#2

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=2004-12-17.09
 
4
scriptversion=2005-05-14.22
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
109
109
        shift
110
110
        continue;;
111
111
 
112
 
    --help) echo "$usage"; exit 0;;
 
112
    --help) echo "$usage"; exit $?;;
113
113
 
114
114
    -m) chmodcmd="$chmodprog $2"
115
115
        shift
134
134
        shift
135
135
        continue;;
136
136
 
137
 
    --version) echo "$0 $scriptversion"; exit 0;;
 
137
    --version) echo "$0 $scriptversion"; exit $?;;
138
138
 
139
139
    *)  # When -d is used, all remaining arguments are directories to create.
140
140
        # When -t is used, the destination is already specified.