cannam@167
|
1 #!/bin/sh
|
cannam@167
|
2 # install - install a program, script, or datafile
|
cannam@167
|
3
|
cannam@167
|
4 scriptversion=2014-09-12.12; # UTC
|
cannam@167
|
5
|
cannam@167
|
6 # This originates from X11R5 (mit/util/scripts/install.sh), which was
|
cannam@167
|
7 # later released in X11R6 (xc/config/util/install.sh) with the
|
cannam@167
|
8 # following copyright and license.
|
cannam@167
|
9 #
|
cannam@167
|
10 # Copyright (C) 1994 X Consortium
|
cannam@167
|
11 #
|
cannam@167
|
12 # Permission is hereby granted, free of charge, to any person obtaining a copy
|
cannam@167
|
13 # of this software and associated documentation files (the "Software"), to
|
cannam@167
|
14 # deal in the Software without restriction, including without limitation the
|
cannam@167
|
15 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
cannam@167
|
16 # sell copies of the Software, and to permit persons to whom the Software is
|
cannam@167
|
17 # furnished to do so, subject to the following conditions:
|
cannam@167
|
18 #
|
cannam@167
|
19 # The above copyright notice and this permission notice shall be included in
|
cannam@167
|
20 # all copies or substantial portions of the Software.
|
cannam@167
|
21 #
|
cannam@167
|
22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
cannam@167
|
23 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
cannam@167
|
24 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
cannam@167
|
25 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
cannam@167
|
26 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
cannam@167
|
27 # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@167
|
28 #
|
cannam@167
|
29 # Except as contained in this notice, the name of the X Consortium shall not
|
cannam@167
|
30 # be used in advertising or otherwise to promote the sale, use or other deal-
|
cannam@167
|
31 # ings in this Software without prior written authorization from the X Consor-
|
cannam@167
|
32 # tium.
|
cannam@167
|
33 #
|
cannam@167
|
34 #
|
cannam@167
|
35 # FSF changes to this file are in the public domain.
|
cannam@167
|
36 #
|
cannam@167
|
37 # Calling this script install-sh is preferred over install.sh, to prevent
|
cannam@167
|
38 # 'make' implicit rules from creating a file called install from it
|
cannam@167
|
39 # when there is no Makefile.
|
cannam@167
|
40 #
|
cannam@167
|
41 # This script is compatible with the BSD install script, but was written
|
cannam@167
|
42 # from scratch.
|
cannam@167
|
43
|
cannam@167
|
44 tab=' '
|
cannam@167
|
45 nl='
|
cannam@167
|
46 '
|
cannam@167
|
47 IFS=" $tab$nl"
|
cannam@167
|
48
|
cannam@167
|
49 # Set DOITPROG to "echo" to test this script.
|
cannam@167
|
50
|
cannam@167
|
51 doit=${DOITPROG-}
|
cannam@167
|
52 doit_exec=${doit:-exec}
|
cannam@167
|
53
|
cannam@167
|
54 # Put in absolute file names if you don't have them in your path;
|
cannam@167
|
55 # or use environment vars.
|
cannam@167
|
56
|
cannam@167
|
57 chgrpprog=${CHGRPPROG-chgrp}
|
cannam@167
|
58 chmodprog=${CHMODPROG-chmod}
|
cannam@167
|
59 chownprog=${CHOWNPROG-chown}
|
cannam@167
|
60 cmpprog=${CMPPROG-cmp}
|
cannam@167
|
61 cpprog=${CPPROG-cp}
|
cannam@167
|
62 mkdirprog=${MKDIRPROG-mkdir}
|
cannam@167
|
63 mvprog=${MVPROG-mv}
|
cannam@167
|
64 rmprog=${RMPROG-rm}
|
cannam@167
|
65 stripprog=${STRIPPROG-strip}
|
cannam@167
|
66
|
cannam@167
|
67 posix_mkdir=
|
cannam@167
|
68
|
cannam@167
|
69 # Desired mode of installed file.
|
cannam@167
|
70 mode=0755
|
cannam@167
|
71
|
cannam@167
|
72 chgrpcmd=
|
cannam@167
|
73 chmodcmd=$chmodprog
|
cannam@167
|
74 chowncmd=
|
cannam@167
|
75 mvcmd=$mvprog
|
cannam@167
|
76 rmcmd="$rmprog -f"
|
cannam@167
|
77 stripcmd=
|
cannam@167
|
78
|
cannam@167
|
79 src=
|
cannam@167
|
80 dst=
|
cannam@167
|
81 dir_arg=
|
cannam@167
|
82 dst_arg=
|
cannam@167
|
83
|
cannam@167
|
84 copy_on_change=false
|
cannam@167
|
85 is_target_a_directory=possibly
|
cannam@167
|
86
|
cannam@167
|
87 usage="\
|
cannam@167
|
88 Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
cannam@167
|
89 or: $0 [OPTION]... SRCFILES... DIRECTORY
|
cannam@167
|
90 or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
cannam@167
|
91 or: $0 [OPTION]... -d DIRECTORIES...
|
cannam@167
|
92
|
cannam@167
|
93 In the 1st form, copy SRCFILE to DSTFILE.
|
cannam@167
|
94 In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
cannam@167
|
95 In the 4th, create DIRECTORIES.
|
cannam@167
|
96
|
cannam@167
|
97 Options:
|
cannam@167
|
98 --help display this help and exit.
|
cannam@167
|
99 --version display version info and exit.
|
cannam@167
|
100
|
cannam@167
|
101 -c (ignored)
|
cannam@167
|
102 -C install only if different (preserve the last data modification time)
|
cannam@167
|
103 -d create directories instead of installing files.
|
cannam@167
|
104 -g GROUP $chgrpprog installed files to GROUP.
|
cannam@167
|
105 -m MODE $chmodprog installed files to MODE.
|
cannam@167
|
106 -o USER $chownprog installed files to USER.
|
cannam@167
|
107 -s $stripprog installed files.
|
cannam@167
|
108 -t DIRECTORY install into DIRECTORY.
|
cannam@167
|
109 -T report an error if DSTFILE is a directory.
|
cannam@167
|
110
|
cannam@167
|
111 Environment variables override the default commands:
|
cannam@167
|
112 CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
|
cannam@167
|
113 RMPROG STRIPPROG
|
cannam@167
|
114 "
|
cannam@167
|
115
|
cannam@167
|
116 while test $# -ne 0; do
|
cannam@167
|
117 case $1 in
|
cannam@167
|
118 -c) ;;
|
cannam@167
|
119
|
cannam@167
|
120 -C) copy_on_change=true;;
|
cannam@167
|
121
|
cannam@167
|
122 -d) dir_arg=true;;
|
cannam@167
|
123
|
cannam@167
|
124 -g) chgrpcmd="$chgrpprog $2"
|
cannam@167
|
125 shift;;
|
cannam@167
|
126
|
cannam@167
|
127 --help) echo "$usage"; exit $?;;
|
cannam@167
|
128
|
cannam@167
|
129 -m) mode=$2
|
cannam@167
|
130 case $mode in
|
cannam@167
|
131 *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
|
cannam@167
|
132 echo "$0: invalid mode: $mode" >&2
|
cannam@167
|
133 exit 1;;
|
cannam@167
|
134 esac
|
cannam@167
|
135 shift;;
|
cannam@167
|
136
|
cannam@167
|
137 -o) chowncmd="$chownprog $2"
|
cannam@167
|
138 shift;;
|
cannam@167
|
139
|
cannam@167
|
140 -s) stripcmd=$stripprog;;
|
cannam@167
|
141
|
cannam@167
|
142 -t)
|
cannam@167
|
143 is_target_a_directory=always
|
cannam@167
|
144 dst_arg=$2
|
cannam@167
|
145 # Protect names problematic for 'test' and other utilities.
|
cannam@167
|
146 case $dst_arg in
|
cannam@167
|
147 -* | [=\(\)!]) dst_arg=./$dst_arg;;
|
cannam@167
|
148 esac
|
cannam@167
|
149 shift;;
|
cannam@167
|
150
|
cannam@167
|
151 -T) is_target_a_directory=never;;
|
cannam@167
|
152
|
cannam@167
|
153 --version) echo "$0 $scriptversion"; exit $?;;
|
cannam@167
|
154
|
cannam@167
|
155 --) shift
|
cannam@167
|
156 break;;
|
cannam@167
|
157
|
cannam@167
|
158 -*) echo "$0: invalid option: $1" >&2
|
cannam@167
|
159 exit 1;;
|
cannam@167
|
160
|
cannam@167
|
161 *) break;;
|
cannam@167
|
162 esac
|
cannam@167
|
163 shift
|
cannam@167
|
164 done
|
cannam@167
|
165
|
cannam@167
|
166 # We allow the use of options -d and -T together, by making -d
|
cannam@167
|
167 # take the precedence; this is for compatibility with GNU install.
|
cannam@167
|
168
|
cannam@167
|
169 if test -n "$dir_arg"; then
|
cannam@167
|
170 if test -n "$dst_arg"; then
|
cannam@167
|
171 echo "$0: target directory not allowed when installing a directory." >&2
|
cannam@167
|
172 exit 1
|
cannam@167
|
173 fi
|
cannam@167
|
174 fi
|
cannam@167
|
175
|
cannam@167
|
176 if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
|
cannam@167
|
177 # When -d is used, all remaining arguments are directories to create.
|
cannam@167
|
178 # When -t is used, the destination is already specified.
|
cannam@167
|
179 # Otherwise, the last argument is the destination. Remove it from $@.
|
cannam@167
|
180 for arg
|
cannam@167
|
181 do
|
cannam@167
|
182 if test -n "$dst_arg"; then
|
cannam@167
|
183 # $@ is not empty: it contains at least $arg.
|
cannam@167
|
184 set fnord "$@" "$dst_arg"
|
cannam@167
|
185 shift # fnord
|
cannam@167
|
186 fi
|
cannam@167
|
187 shift # arg
|
cannam@167
|
188 dst_arg=$arg
|
cannam@167
|
189 # Protect names problematic for 'test' and other utilities.
|
cannam@167
|
190 case $dst_arg in
|
cannam@167
|
191 -* | [=\(\)!]) dst_arg=./$dst_arg;;
|
cannam@167
|
192 esac
|
cannam@167
|
193 done
|
cannam@167
|
194 fi
|
cannam@167
|
195
|
cannam@167
|
196 if test $# -eq 0; then
|
cannam@167
|
197 if test -z "$dir_arg"; then
|
cannam@167
|
198 echo "$0: no input file specified." >&2
|
cannam@167
|
199 exit 1
|
cannam@167
|
200 fi
|
cannam@167
|
201 # It's OK to call 'install-sh -d' without argument.
|
cannam@167
|
202 # This can happen when creating conditional directories.
|
cannam@167
|
203 exit 0
|
cannam@167
|
204 fi
|
cannam@167
|
205
|
cannam@167
|
206 if test -z "$dir_arg"; then
|
cannam@167
|
207 if test $# -gt 1 || test "$is_target_a_directory" = always; then
|
cannam@167
|
208 if test ! -d "$dst_arg"; then
|
cannam@167
|
209 echo "$0: $dst_arg: Is not a directory." >&2
|
cannam@167
|
210 exit 1
|
cannam@167
|
211 fi
|
cannam@167
|
212 fi
|
cannam@167
|
213 fi
|
cannam@167
|
214
|
cannam@167
|
215 if test -z "$dir_arg"; then
|
cannam@167
|
216 do_exit='(exit $ret); exit $ret'
|
cannam@167
|
217 trap "ret=129; $do_exit" 1
|
cannam@167
|
218 trap "ret=130; $do_exit" 2
|
cannam@167
|
219 trap "ret=141; $do_exit" 13
|
cannam@167
|
220 trap "ret=143; $do_exit" 15
|
cannam@167
|
221
|
cannam@167
|
222 # Set umask so as not to create temps with too-generous modes.
|
cannam@167
|
223 # However, 'strip' requires both read and write access to temps.
|
cannam@167
|
224 case $mode in
|
cannam@167
|
225 # Optimize common cases.
|
cannam@167
|
226 *644) cp_umask=133;;
|
cannam@167
|
227 *755) cp_umask=22;;
|
cannam@167
|
228
|
cannam@167
|
229 *[0-7])
|
cannam@167
|
230 if test -z "$stripcmd"; then
|
cannam@167
|
231 u_plus_rw=
|
cannam@167
|
232 else
|
cannam@167
|
233 u_plus_rw='% 200'
|
cannam@167
|
234 fi
|
cannam@167
|
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
|
cannam@167
|
236 *)
|
cannam@167
|
237 if test -z "$stripcmd"; then
|
cannam@167
|
238 u_plus_rw=
|
cannam@167
|
239 else
|
cannam@167
|
240 u_plus_rw=,u+rw
|
cannam@167
|
241 fi
|
cannam@167
|
242 cp_umask=$mode$u_plus_rw;;
|
cannam@167
|
243 esac
|
cannam@167
|
244 fi
|
cannam@167
|
245
|
cannam@167
|
246 for src
|
cannam@167
|
247 do
|
cannam@167
|
248 # Protect names problematic for 'test' and other utilities.
|
cannam@167
|
249 case $src in
|
cannam@167
|
250 -* | [=\(\)!]) src=./$src;;
|
cannam@167
|
251 esac
|
cannam@167
|
252
|
cannam@167
|
253 if test -n "$dir_arg"; then
|
cannam@167
|
254 dst=$src
|
cannam@167
|
255 dstdir=$dst
|
cannam@167
|
256 test -d "$dstdir"
|
cannam@167
|
257 dstdir_status=$?
|
cannam@167
|
258 else
|
cannam@167
|
259
|
cannam@167
|
260 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
cannam@167
|
261 # might cause directories to be created, which would be especially bad
|
cannam@167
|
262 # if $src (and thus $dsttmp) contains '*'.
|
cannam@167
|
263 if test ! -f "$src" && test ! -d "$src"; then
|
cannam@167
|
264 echo "$0: $src does not exist." >&2
|
cannam@167
|
265 exit 1
|
cannam@167
|
266 fi
|
cannam@167
|
267
|
cannam@167
|
268 if test -z "$dst_arg"; then
|
cannam@167
|
269 echo "$0: no destination specified." >&2
|
cannam@167
|
270 exit 1
|
cannam@167
|
271 fi
|
cannam@167
|
272 dst=$dst_arg
|
cannam@167
|
273
|
cannam@167
|
274 # If destination is a directory, append the input filename; won't work
|
cannam@167
|
275 # if double slashes aren't ignored.
|
cannam@167
|
276 if test -d "$dst"; then
|
cannam@167
|
277 if test "$is_target_a_directory" = never; then
|
cannam@167
|
278 echo "$0: $dst_arg: Is a directory" >&2
|
cannam@167
|
279 exit 1
|
cannam@167
|
280 fi
|
cannam@167
|
281 dstdir=$dst
|
cannam@167
|
282 dst=$dstdir/`basename "$src"`
|
cannam@167
|
283 dstdir_status=0
|
cannam@167
|
284 else
|
cannam@167
|
285 dstdir=`dirname "$dst"`
|
cannam@167
|
286 test -d "$dstdir"
|
cannam@167
|
287 dstdir_status=$?
|
cannam@167
|
288 fi
|
cannam@167
|
289 fi
|
cannam@167
|
290
|
cannam@167
|
291 obsolete_mkdir_used=false
|
cannam@167
|
292
|
cannam@167
|
293 if test $dstdir_status != 0; then
|
cannam@167
|
294 case $posix_mkdir in
|
cannam@167
|
295 '')
|
cannam@167
|
296 # Create intermediate dirs using mode 755 as modified by the umask.
|
cannam@167
|
297 # This is like FreeBSD 'install' as of 1997-10-28.
|
cannam@167
|
298 umask=`umask`
|
cannam@167
|
299 case $stripcmd.$umask in
|
cannam@167
|
300 # Optimize common cases.
|
cannam@167
|
301 *[2367][2367]) mkdir_umask=$umask;;
|
cannam@167
|
302 .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
|
cannam@167
|
303
|
cannam@167
|
304 *[0-7])
|
cannam@167
|
305 mkdir_umask=`expr $umask + 22 \
|
cannam@167
|
306 - $umask % 100 % 40 + $umask % 20 \
|
cannam@167
|
307 - $umask % 10 % 4 + $umask % 2
|
cannam@167
|
308 `;;
|
cannam@167
|
309 *) mkdir_umask=$umask,go-w;;
|
cannam@167
|
310 esac
|
cannam@167
|
311
|
cannam@167
|
312 # With -d, create the new directory with the user-specified mode.
|
cannam@167
|
313 # Otherwise, rely on $mkdir_umask.
|
cannam@167
|
314 if test -n "$dir_arg"; then
|
cannam@167
|
315 mkdir_mode=-m$mode
|
cannam@167
|
316 else
|
cannam@167
|
317 mkdir_mode=
|
cannam@167
|
318 fi
|
cannam@167
|
319
|
cannam@167
|
320 posix_mkdir=false
|
cannam@167
|
321 case $umask in
|
cannam@167
|
322 *[123567][0-7][0-7])
|
cannam@167
|
323 # POSIX mkdir -p sets u+wx bits regardless of umask, which
|
cannam@167
|
324 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
|
cannam@167
|
325 ;;
|
cannam@167
|
326 *)
|
cannam@167
|
327 # $RANDOM is not portable (e.g. dash); use it when possible to
|
cannam@167
|
328 # lower collision chance
|
cannam@167
|
329 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
cannam@167
|
330 trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
|
cannam@167
|
331
|
cannam@167
|
332 # As "mkdir -p" follows symlinks and we work in /tmp possibly; so
|
cannam@167
|
333 # create the $tmpdir first (and fail if unsuccessful) to make sure
|
cannam@167
|
334 # that nobody tries to guess the $tmpdir name.
|
cannam@167
|
335 if (umask $mkdir_umask &&
|
cannam@167
|
336 $mkdirprog $mkdir_mode "$tmpdir" &&
|
cannam@167
|
337 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
|
cannam@167
|
338 then
|
cannam@167
|
339 if test -z "$dir_arg" || {
|
cannam@167
|
340 # Check for POSIX incompatibilities with -m.
|
cannam@167
|
341 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
|
cannam@167
|
342 # other-writable bit of parent directory when it shouldn't.
|
cannam@167
|
343 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
|
cannam@167
|
344 test_tmpdir="$tmpdir/a"
|
cannam@167
|
345 ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
|
cannam@167
|
346 case $ls_ld_tmpdir in
|
cannam@167
|
347 d????-?r-*) different_mode=700;;
|
cannam@167
|
348 d????-?--*) different_mode=755;;
|
cannam@167
|
349 *) false;;
|
cannam@167
|
350 esac &&
|
cannam@167
|
351 $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
|
cannam@167
|
352 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
|
cannam@167
|
353 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
|
cannam@167
|
354 }
|
cannam@167
|
355 }
|
cannam@167
|
356 then posix_mkdir=:
|
cannam@167
|
357 fi
|
cannam@167
|
358 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
|
cannam@167
|
359 else
|
cannam@167
|
360 # Remove any dirs left behind by ancient mkdir implementations.
|
cannam@167
|
361 rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
|
cannam@167
|
362 fi
|
cannam@167
|
363 trap '' 0;;
|
cannam@167
|
364 esac;;
|
cannam@167
|
365 esac
|
cannam@167
|
366
|
cannam@167
|
367 if
|
cannam@167
|
368 $posix_mkdir && (
|
cannam@167
|
369 umask $mkdir_umask &&
|
cannam@167
|
370 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
|
cannam@167
|
371 )
|
cannam@167
|
372 then :
|
cannam@167
|
373 else
|
cannam@167
|
374
|
cannam@167
|
375 # The umask is ridiculous, or mkdir does not conform to POSIX,
|
cannam@167
|
376 # or it failed possibly due to a race condition. Create the
|
cannam@167
|
377 # directory the slow way, step by step, checking for races as we go.
|
cannam@167
|
378
|
cannam@167
|
379 case $dstdir in
|
cannam@167
|
380 /*) prefix='/';;
|
cannam@167
|
381 [-=\(\)!]*) prefix='./';;
|
cannam@167
|
382 *) prefix='';;
|
cannam@167
|
383 esac
|
cannam@167
|
384
|
cannam@167
|
385 oIFS=$IFS
|
cannam@167
|
386 IFS=/
|
cannam@167
|
387 set -f
|
cannam@167
|
388 set fnord $dstdir
|
cannam@167
|
389 shift
|
cannam@167
|
390 set +f
|
cannam@167
|
391 IFS=$oIFS
|
cannam@167
|
392
|
cannam@167
|
393 prefixes=
|
cannam@167
|
394
|
cannam@167
|
395 for d
|
cannam@167
|
396 do
|
cannam@167
|
397 test X"$d" = X && continue
|
cannam@167
|
398
|
cannam@167
|
399 prefix=$prefix$d
|
cannam@167
|
400 if test -d "$prefix"; then
|
cannam@167
|
401 prefixes=
|
cannam@167
|
402 else
|
cannam@167
|
403 if $posix_mkdir; then
|
cannam@167
|
404 (umask=$mkdir_umask &&
|
cannam@167
|
405 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
|
cannam@167
|
406 # Don't fail if two instances are running concurrently.
|
cannam@167
|
407 test -d "$prefix" || exit 1
|
cannam@167
|
408 else
|
cannam@167
|
409 case $prefix in
|
cannam@167
|
410 *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
|
cannam@167
|
411 *) qprefix=$prefix;;
|
cannam@167
|
412 esac
|
cannam@167
|
413 prefixes="$prefixes '$qprefix'"
|
cannam@167
|
414 fi
|
cannam@167
|
415 fi
|
cannam@167
|
416 prefix=$prefix/
|
cannam@167
|
417 done
|
cannam@167
|
418
|
cannam@167
|
419 if test -n "$prefixes"; then
|
cannam@167
|
420 # Don't fail if two instances are running concurrently.
|
cannam@167
|
421 (umask $mkdir_umask &&
|
cannam@167
|
422 eval "\$doit_exec \$mkdirprog $prefixes") ||
|
cannam@167
|
423 test -d "$dstdir" || exit 1
|
cannam@167
|
424 obsolete_mkdir_used=true
|
cannam@167
|
425 fi
|
cannam@167
|
426 fi
|
cannam@167
|
427 fi
|
cannam@167
|
428
|
cannam@167
|
429 if test -n "$dir_arg"; then
|
cannam@167
|
430 { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
|
cannam@167
|
431 { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
|
cannam@167
|
432 { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
|
cannam@167
|
433 test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
|
cannam@167
|
434 else
|
cannam@167
|
435
|
cannam@167
|
436 # Make a couple of temp file names in the proper directory.
|
cannam@167
|
437 dsttmp=$dstdir/_inst.$$_
|
cannam@167
|
438 rmtmp=$dstdir/_rm.$$_
|
cannam@167
|
439
|
cannam@167
|
440 # Trap to clean up those temp files at exit.
|
cannam@167
|
441 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
cannam@167
|
442
|
cannam@167
|
443 # Copy the file name to the temp name.
|
cannam@167
|
444 (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
|
cannam@167
|
445
|
cannam@167
|
446 # and set any options; do chmod last to preserve setuid bits.
|
cannam@167
|
447 #
|
cannam@167
|
448 # If any of these fail, we abort the whole thing. If we want to
|
cannam@167
|
449 # ignore errors from any of these, just make sure not to ignore
|
cannam@167
|
450 # errors from the above "$doit $cpprog $src $dsttmp" command.
|
cannam@167
|
451 #
|
cannam@167
|
452 { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
|
cannam@167
|
453 { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
|
cannam@167
|
454 { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
|
cannam@167
|
455 { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
|
cannam@167
|
456
|
cannam@167
|
457 # If -C, don't bother to copy if it wouldn't change the file.
|
cannam@167
|
458 if $copy_on_change &&
|
cannam@167
|
459 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
|
cannam@167
|
460 new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
|
cannam@167
|
461 set -f &&
|
cannam@167
|
462 set X $old && old=:$2:$4:$5:$6 &&
|
cannam@167
|
463 set X $new && new=:$2:$4:$5:$6 &&
|
cannam@167
|
464 set +f &&
|
cannam@167
|
465 test "$old" = "$new" &&
|
cannam@167
|
466 $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
|
cannam@167
|
467 then
|
cannam@167
|
468 rm -f "$dsttmp"
|
cannam@167
|
469 else
|
cannam@167
|
470 # Rename the file to the real destination.
|
cannam@167
|
471 $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
|
cannam@167
|
472
|
cannam@167
|
473 # The rename failed, perhaps because mv can't rename something else
|
cannam@167
|
474 # to itself, or perhaps because mv is so ancient that it does not
|
cannam@167
|
475 # support -f.
|
cannam@167
|
476 {
|
cannam@167
|
477 # Now remove or move aside any old file at destination location.
|
cannam@167
|
478 # We try this two ways since rm can't unlink itself on some
|
cannam@167
|
479 # systems and the destination file might be busy for other
|
cannam@167
|
480 # reasons. In this case, the final cleanup might fail but the new
|
cannam@167
|
481 # file should still install successfully.
|
cannam@167
|
482 {
|
cannam@167
|
483 test ! -f "$dst" ||
|
cannam@167
|
484 $doit $rmcmd -f "$dst" 2>/dev/null ||
|
cannam@167
|
485 { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
|
cannam@167
|
486 { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
|
cannam@167
|
487 } ||
|
cannam@167
|
488 { echo "$0: cannot unlink or rename $dst" >&2
|
cannam@167
|
489 (exit 1); exit 1
|
cannam@167
|
490 }
|
cannam@167
|
491 } &&
|
cannam@167
|
492
|
cannam@167
|
493 # Now rename the file to the real destination.
|
cannam@167
|
494 $doit $mvcmd "$dsttmp" "$dst"
|
cannam@167
|
495 }
|
cannam@167
|
496 fi || exit 1
|
cannam@167
|
497
|
cannam@167
|
498 trap '' 0
|
cannam@167
|
499 fi
|
cannam@167
|
500 done
|
cannam@167
|
501
|
cannam@167
|
502 # Local variables:
|
cannam@167
|
503 # eval: (add-hook 'write-file-hooks 'time-stamp)
|
cannam@167
|
504 # time-stamp-start: "scriptversion="
|
cannam@167
|
505 # time-stamp-format: "%:y-%02m-%02d.%02H"
|
cannam@167
|
506 # time-stamp-time-zone: "UTC"
|
cannam@167
|
507 # time-stamp-end: "; # UTC"
|
cannam@167
|
508 # End:
|