diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-27 23:50:01 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-27 23:50:01 +0000 |
commit | 30481518c5d6fd4bdd9a6a93858fcaa7bb28fc6c (patch) | |
tree | 6c0c516f42cc06eca808edbea26b1c6de7b17983 /vest | |
parent | ac8544c5c53e0211a2c9778e4ba26f513cef9525 (diff) |
bindir
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@440 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest')
-rwxr-xr-x | vest/dist-vest.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vest/dist-vest.pl b/vest/dist-vest.pl index 5f99d4f0..f0ee99f9 100755 --- a/vest/dist-vest.pl +++ b/vest/dist-vest.pl @@ -174,10 +174,11 @@ sub modbin { local $_; my $bindir=shift; `mkdir -p $bindir`; + -d $bindir || die "couldn't make bindir $bindir"; for (@_) { my $src=$$_; $$_="$bindir/".basename($src); - `cp $src $$_`; + `cp -p $src $$_`; die "cp $src $$_ failed: $!" unless $? == 0; } } |