search for: dsttmp

Displaying 3 results from an estimated 3 matches for "dsttmp".

Did you mean: dattmp
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...stall: no input file specified" + exit 1 +else + true +fi + +if [ x"$dir_arg" != x ]; then + dst=$src + src="" + + if [ -d $dst ]; then + instcmd=: + chmodcmd="" + else + instcmd=mkdir + fi +else + +# Waiting for this to be detected by the "$instcmd $src $dsttmp" command +# might cause directories to be created, which would be especially bad +# if $src (and thus $dsttmp) contains '*'. + + if [ -f $src -o -d $src ] + then + true + else + echo "install: $src does not exist" + exit 1 + fi + + if [ x"$dst" = x ] + then +...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...Add 'dist' target; need to know which files will be included diff -urp oldrsync/install-sh newrsync/install-sh --- oldrsync/install-sh Tue Nov 19 18:57:34 2002 +++ newrsync/install-sh Tue Nov 19 18:58:11 2002 @@ -208,7 +208,7 @@ else # Make a temp file name in the proper directory. - dsttmp=$dstdir/#inst.$$# + dsttmp=$dstdir/_inst.$$_ # Move or copy the file name to the temp name diff -urp oldrsync/lib/getaddrinfo.c newrsync/lib/getaddrinfo.c --- oldrsync/lib/getaddrinfo.c Sun Nov 17 04:52:57 2002 +++ newrsync/lib/getaddrinfo.c Sun Nov 17 05:05:28 2002 @@ -73,9 +73,9 @@ static co...
2003 Jan 10
2
Long-pending patch for Stratus VOS build
The following patch still applies cleanly to the current cvs copy of rsync. I apply it each night after I grab rsync from the build farm. Without it, I don't get far at all. The purpose of the patch is to add executable extension handling, which we need, and to clean up a few POSIX things and supply defaults for a few #defines we don't have. (See the original letter for full details).