aboutsummaryrefslogtreecommitdiff
path: root/libltdl/install-sh
diff options
context:
space:
mode:
Diffstat (limited to 'libltdl/install-sh')
-rwxr-xr-xlibltdl/install-sh102
1 files changed, 50 insertions, 52 deletions
diff --git a/libltdl/install-sh b/libltdl/install-sh
index e4160c99..4d4a9519 100755
--- a/libltdl/install-sh
+++ b/libltdl/install-sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2# install - install a program, script, or datafile 2# install - install a program, script, or datafile
3 3
4scriptversion=2004-04-01.17 4scriptversion=2005-05-14.22
5 5
6# This originates from X11R5 (mit/util/scripts/install.sh), which was 6# This originates from X11R5 (mit/util/scripts/install.sh), which was
7# later released in X11R6 (xc/config/util/install.sh) with the 7# later released in X11R6 (xc/config/util/install.sh) with the
@@ -58,9 +58,6 @@ stripprog="${STRIPPROG-strip}"
58rmprog="${RMPROG-rm}" 58rmprog="${RMPROG-rm}"
59mkdirprog="${MKDIRPROG-mkdir}" 59mkdirprog="${MKDIRPROG-mkdir}"
60 60
61transformbasename=
62transform_arg=
63instcmd="$mvprog"
64chmodcmd="$chmodprog 0755" 61chmodcmd="$chmodprog 0755"
65chowncmd= 62chowncmd=
66chgrpcmd= 63chgrpcmd=
@@ -70,23 +67,27 @@ mvcmd="$mvprog"
70src= 67src=
71dst= 68dst=
72dir_arg= 69dir_arg=
70dstarg=
71no_target_directory=
73 72
74usage="Usage: $0 [OPTION]... SRCFILE DSTFILE 73usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
75 or: $0 [OPTION]... SRCFILES... DIRECTORY 74 or: $0 [OPTION]... SRCFILES... DIRECTORY
76 or: $0 -d DIRECTORIES... 75 or: $0 [OPTION]... -t DIRECTORY SRCFILES...
76 or: $0 [OPTION]... -d DIRECTORIES...
77 77
78In the first form, install SRCFILE to DSTFILE, removing SRCFILE by default. 78In the 1st form, copy SRCFILE to DSTFILE.
79In the second, create the directory path DIR. 79In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
80In the 4th, create DIRECTORIES.
80 81
81Options: 82Options:
82-b=TRANSFORMBASENAME 83-c (ignored)
83-c copy source (using $cpprog) instead of moving (using $mvprog).
84-d create directories instead of installing files. 84-d create directories instead of installing files.
85-g GROUP $chgrp installed files to GROUP. 85-g GROUP $chgrpprog installed files to GROUP.
86-m MODE $chmod installed files to MODE. 86-m MODE $chmodprog installed files to MODE.
87-o USER $chown installed files to USER. 87-o USER $chownprog installed files to USER.
88-s strip installed files (using $stripprog). 88-s $stripprog installed files.
89-t=TRANSFORM 89-t DIRECTORY install into DIRECTORY.
90-T report an error if DSTFILE is a directory.
90--help display this help and exit. 91--help display this help and exit.
91--version display version info and exit. 92--version display version info and exit.
92 93
@@ -96,12 +97,7 @@ Environment variables override the default commands:
96 97
97while test -n "$1"; do 98while test -n "$1"; do
98 case $1 in 99 case $1 in
99 -b=*) transformbasename=`echo $1 | sed 's/-b=//'` 100 -c) shift
100 shift
101 continue;;
102
103 -c) instcmd=$cpprog
104 shift
105 continue;; 101 continue;;
106 102
107 -d) dir_arg=true 103 -d) dir_arg=true
@@ -113,7 +109,7 @@ while test -n "$1"; do
113 shift 109 shift
114 continue;; 110 continue;;
115 111
116 --help) echo "$usage"; exit 0;; 112 --help) echo "$usage"; exit $?;;
117 113
118 -m) chmodcmd="$chmodprog $2" 114 -m) chmodcmd="$chmodprog $2"
119 shift 115 shift
@@ -129,14 +125,20 @@ while test -n "$1"; do
129 shift 125 shift
130 continue;; 126 continue;;
131 127
132 -t=*) transformarg=`echo $1 | sed 's/-t=//'` 128 -t) dstarg=$2
133 shift 129 shift
134 continue;; 130 shift
131 continue;;
135 132
136 --version) echo "$0 $scriptversion"; exit 0;; 133 -T) no_target_directory=true
134 shift
135 continue;;
136
137 --version) echo "$0 $scriptversion"; exit $?;;
137 138
138 *) # When -d is used, all remaining arguments are directories to create. 139 *) # When -d is used, all remaining arguments are directories to create.
139 test -n "$dir_arg" && break 140 # When -t is used, the destination is already specified.
141 test -n "$dir_arg$dstarg" && break
140 # Otherwise, the last argument is the destination. Remove it from $@. 142 # Otherwise, the last argument is the destination. Remove it from $@.
141 for arg 143 for arg
142 do 144 do
@@ -174,13 +176,13 @@ do
174 src= 176 src=
175 177
176 if test -d "$dst"; then 178 if test -d "$dst"; then
177 instcmd=: 179 mkdircmd=:
178 chmodcmd= 180 chmodcmd=
179 else 181 else
180 instcmd=$mkdirprog 182 mkdircmd=$mkdirprog
181 fi 183 fi
182 else 184 else
183 # Waiting for this to be detected by the "$instcmd $src $dsttmp" command 185 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
184 # might cause directories to be created, which would be especially bad 186 # might cause directories to be created, which would be especially bad
185 # if $src (and thus $dsttmp) contains '*'. 187 # if $src (and thus $dsttmp) contains '*'.
186 if test ! -f "$src" && test ! -d "$src"; then 188 if test ! -f "$src" && test ! -d "$src"; then
@@ -202,12 +204,16 @@ do
202 # If destination is a directory, append the input filename; won't work 204 # If destination is a directory, append the input filename; won't work
203 # if double slashes aren't ignored. 205 # if double slashes aren't ignored.
204 if test -d "$dst"; then 206 if test -d "$dst"; then
207 if test -n "$no_target_directory"; then
208 echo "$0: $dstarg: Is a directory" >&2
209 exit 1
210 fi
205 dst=$dst/`basename "$src"` 211 dst=$dst/`basename "$src"`
206 fi 212 fi
207 fi 213 fi
208 214
209 # This sed command emulates the dirname command. 215 # This sed command emulates the dirname command.
210 dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` 216 dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
211 217
212 # Make sure that the destination directory exists. 218 # Make sure that the destination directory exists.
213 219
@@ -220,7 +226,8 @@ do
220 oIFS=$IFS 226 oIFS=$IFS
221 # Some sh's can't handle IFS=/ for some reason. 227 # Some sh's can't handle IFS=/ for some reason.
222 IFS='%' 228 IFS='%'
223 set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` 229 set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
230 shift
224 IFS=$oIFS 231 IFS=$oIFS
225 232
226 pathcomp= 233 pathcomp=
@@ -229,51 +236,42 @@ do
229 pathcomp=$pathcomp$1 236 pathcomp=$pathcomp$1
230 shift 237 shift
231 if test ! -d "$pathcomp"; then 238 if test ! -d "$pathcomp"; then
232 $mkdirprog "$pathcomp" || lasterr=$? 239 $mkdirprog "$pathcomp"
233 # mkdir can fail with a `File exist' error in case several 240 # mkdir can fail with a `File exist' error in case several
234 # install-sh are creating the directory concurrently. This 241 # install-sh are creating the directory concurrently. This
235 # is OK. 242 # is OK.
236 test ! -d "$pathcomp" && { (exit ${lasterr-1}); exit; } 243 test -d "$pathcomp" || exit
237 fi 244 fi
238 pathcomp=$pathcomp/ 245 pathcomp=$pathcomp/
239 done 246 done
240 fi 247 fi
241 248
242 if test -n "$dir_arg"; then 249 if test -n "$dir_arg"; then
243 $doit $instcmd "$dst" \ 250 $doit $mkdircmd "$dst" \
244 && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ 251 && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
245 && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ 252 && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
246 && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ 253 && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
247 && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } 254 && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
248 255
249 else 256 else
250 # If we're going to rename the final executable, determine the name now. 257 dstfile=`basename "$dst"`
251 if test -z "$transformarg"; then
252 dstfile=`basename "$dst"`
253 else
254 dstfile=`basename "$dst" $transformbasename \
255 | sed $transformarg`$transformbasename
256 fi
257
258 # don't allow the sed command to completely eliminate the filename.
259 test -z "$dstfile" && dstfile=`basename "$dst"`
260 258
261 # Make a couple of temp file names in the proper directory. 259 # Make a couple of temp file names in the proper directory.
262 dsttmp=$dstdir/_inst.$$_ 260 dsttmp=$dstdir/_inst.$$_
263 rmtmp=$dstdir/_rm.$$_ 261 rmtmp=$dstdir/_rm.$$_
264 262
265 # Trap to clean up those temp files at exit. 263 # Trap to clean up those temp files at exit.
266 trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0 264 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
267 trap '(exit $?); exit' 1 2 13 15 265 trap '(exit $?); exit' 1 2 13 15
268 266
269 # Move or copy the file name to the temp name 267 # Copy the file name to the temp name.
270 $doit $instcmd "$src" "$dsttmp" && 268 $doit $cpprog "$src" "$dsttmp" &&
271 269
272 # and set any options; do chmod last to preserve setuid bits. 270 # and set any options; do chmod last to preserve setuid bits.
273 # 271 #
274 # If any of these fail, we abort the whole thing. If we want to 272 # If any of these fail, we abort the whole thing. If we want to
275 # ignore errors from any of these, just make sure not to ignore 273 # ignore errors from any of these, just make sure not to ignore
276 # errors from the above "$doit $instcmd $src $dsttmp" command. 274 # errors from the above "$doit $cpprog $src $dsttmp" command.
277 # 275 #
278 { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ 276 { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
279 && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ 277 && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
@@ -298,7 +296,7 @@ do
298 || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ 296 || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
299 || { 297 || {
300 echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 298 echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
301 (exit 1); exit 299 (exit 1); exit 1
302 } 300 }
303 else 301 else
304 : 302 :
@@ -309,12 +307,12 @@ do
309 $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" 307 $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
310 } 308 }
311 } 309 }
312 fi || { (exit 1); exit; } 310 fi || { (exit 1); exit 1; }
313done 311done
314 312
315# The final little trick to "correctly" pass the exit status to the exit trap. 313# The final little trick to "correctly" pass the exit status to the exit trap.
316{ 314{
317 (exit 0); exit 315 (exit 0); exit 0
318} 316}
319 317
320# Local variables: 318# Local variables: