support COFF on ELF systems
[deliverable/binutils-gdb.git] / install.sh
CommitLineData
bf168768
DZ
1#!/bin/sh
2set -e
3
4#
5# install - install a program, script, or datafile
6# This comes from X11R5; it is not part of GNU.
7#
8# $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
9#
10# This script is compatible with the BSD install script, but was written
11# from scratch.
12#
13
14
15# set DOITPROG to echo to test this script
16
17# Don't use :- since 4.3BSD and earlier shells don't like it.
18doit="${DOITPROG-}"
19
20
21# put in absolute paths if you don't have them in your path; or use env. vars.
22
23mvprog="${MVPROG-mv}"
24cpprog="${CPPROG-cp}"
25chmodprog="${CHMODPROG-chmod}"
26chownprog="${CHOWNPROG-chown}"
27chgrpprog="${CHGRPPROG-chgrp}"
28stripprog="${STRIPPROG-strip}"
29rmprog="${RMPROG-rm}"
30mkdirprog="${MKDIRPROG-mkdir}"
31
32tranformbasename=""
33transform_arg=""
34instcmd="$mvprog"
35chmodcmd=""
36chowncmd=""
37chgrpcmd=""
38stripcmd=""
39rmcmd="$rmprog -f"
40mvcmd="$mvprog"
41src=""
42dst=""
43
44while [ x"$1" != x ]; do
45 case $1 in
46 -c) instcmd="$cpprog"
47 shift
48 continue;;
49
50 -m) chmodcmd="$chmodprog $2"
51 shift
52 shift
53 continue;;
54
55 -o) chowncmd="$chownprog $2"
56 shift
57 shift
58 continue;;
59
60 -g) chgrpcmd="$chgrpprog $2"
61 shift
62 shift
63 continue;;
64
65 -s) stripcmd="$stripprog"
66 shift
67 continue;;
68
69 -t=*) transformarg=`echo $1 | sed 's/-t=//'`
70 shift
71 continue;;
72
73 -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
74 shift
75 continue;;
76
77 *) if [ x"$src" = x ]
78 then
79 src=$1
80 else
f0d7cc29
DZ
81 # this colon is to work around a 386BSD /bin/sh bug
82 :
bf168768
DZ
83 dst=$1
84 fi
85 shift
86 continue;;
87 esac
88done
89
90if [ x"$src" = x ]
91then
92 echo "install: no input file specified"
93 exit 1
94else
95 true
96fi
97
98if [ x"$dst" = x ]
99then
100 echo "install: no destination specified"
101 exit 1
102else
103 true
104fi
105
106# If destination is a directory, append the input filename; if your system
107# does not like double slashes in filenames, you may need to add some logic
108
109if [ -d $dst ]
110then
111 dst="$dst"/`basename $src`
112else
113 true
114fi
115
116
117# Make a temp file name in the proper directory.
118
af864713
DZ
119## this sed command emulates the dirname command
120dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
bf168768 121dsttmp=$dstdir/#inst.$$#
357561a6 122trap "rm -f ${dsttmp}" 0
bf168768
DZ
123
124# Make sure that the destination directory exists.
125# this part is taken from Noah Friedman's mkinstalldirs script
126
127defaultIFS='
128'
129IFS="${IFS-${defaultIFS}}"
130
131oIFS="${IFS}"
132# Some sh's can't handle IFS=/ for some reason.
133IFS='%'
134set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
135IFS="${oIFS}"
136
137pathcomp=''
138
139while [ $# -ne 0 ] ; do
140 pathcomp="${pathcomp}${1}"
141 shift
142
143 if [ ! -d "${pathcomp}" ] ;
144 then
145 $mkdirprog "${pathcomp}"
146 else
147 true
148 fi
149
150 pathcomp="${pathcomp}/"
151done
152
153# If we're going to rename the final executable, determine the name now.
154
155if [ x"$transformarg" = x ]
156then
157 dstfile=`basename $dst`
158else
1a4874f7 159 dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename
bf168768
DZ
160fi
161
162# don't allow the sed command to completely eliminate the filename
163
164if [ x"$dstfile" = x ]
165then
166 dstfile=`basename $dst`
167else
168 true
169fi
170
171# Move or copy the file name to the temp name
172
173$doit $instcmd $src $dsttmp
174
175# and set any options; do chmod last to preserve setuid bits
176
177if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi
178if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi
179if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi
180if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi
181
182# Now rename the file to the real destination.
183
184$doit $rmcmd $dstdir/$dstfile
185$doit $mvcmd $dsttmp $dstdir/$dstfile
186
187
188exit 0
This page took 0.037521 seconds and 4 git commands to generate.