~ubuntu-branches/ubuntu/breezy/uucp/breezy

« back to all changes in this revision

Viewing changes to install-sh

  • Committer: Bazaar Package Importer
  • Author(s): Peter Palfrader
  • Date: 2004-12-30 15:30:22 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041230153022-mx4cdr9j3u9bldo3
Tags: 1.07-12
Add cs localisation for debconf templates (closes: #287305).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
 
1
#!/bin/sh
2
2
#
3
3
# install - install a program, script, or datafile
4
 
# This comes from X11R5.
 
4
# This comes from X11R5 (mit/util/scripts/install.sh).
 
5
#
 
6
# Copyright 1991 by the Massachusetts Institute of Technology
 
7
#
 
8
# Permission to use, copy, modify, distribute, and sell this software and its
 
9
# documentation for any purpose is hereby granted without fee, provided that
 
10
# the above copyright notice appear in all copies and that both that
 
11
# copyright notice and this permission notice appear in supporting
 
12
# documentation, and that the name of M.I.T. not be used in advertising or
 
13
# publicity pertaining to distribution of the software without specific,
 
14
# written prior permission.  M.I.T. makes no representations about the
 
15
# suitability of this software for any purpose.  It is provided "as is"
 
16
# without express or implied warranty.
5
17
#
6
18
# Calling this script install-sh is preferred over install.sh, to prevent
7
19
# `make' implicit rules from creating a file called install from it
8
20
# when there is no Makefile.
9
21
#
10
22
# This script is compatible with the BSD install script, but was written
11
 
# from scratch.
12
 
#
 
23
# from scratch.  It can only install one file at a time, a restriction
 
24
# shared with many OS's install programs.
13
25
 
14
26
 
15
27
# set DOITPROG to echo to test this script
29
41
rmprog="${RMPROG-rm}"
30
42
mkdirprog="${MKDIRPROG-mkdir}"
31
43
 
32
 
tranformbasename=""
 
44
transformbasename=""
33
45
transform_arg=""
34
46
instcmd="$mvprog"
35
47
chmodcmd="$chmodprog 0755"
106
118
        
107
119
        if [ -d $dst ]; then
108
120
                instcmd=:
 
121
                chmodcmd=""
109
122
        else
110
123
                instcmd=mkdir
111
124
        fi