diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-09-14 18:19:40 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-09-14 18:19:40 +0000 |
commit | 36d420ba0f6a08283f67e547ca1b74b1cf873090 (patch) | |
tree | 761c71b106698f6e90550983e966cf35b105ef39 /dev-util/cvs/files | |
parent | whitespace (diff) | |
download | gentoo-2-36d420ba0f6a08283f67e547ca1b74b1cf873090.tar.gz gentoo-2-36d420ba0f6a08283f67e547ca1b74b1cf873090.tar.bz2 gentoo-2-36d420ba0f6a08283f67e547ca1b74b1cf873090.zip |
Fix install on FreeBSD with -j N
(Portage version: 2.1.3.9)
Diffstat (limited to 'dev-util/cvs/files')
-rw-r--r-- | dev-util/cvs/files/cvs-1.12.12-install-sh.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-util/cvs/files/cvs-1.12.12-install-sh.patch b/dev-util/cvs/files/cvs-1.12.12-install-sh.patch new file mode 100644 index 000000000000..825c0ee6f1c3 --- /dev/null +++ b/dev-util/cvs/files/cvs-1.12.12-install-sh.patch @@ -0,0 +1,12 @@ +diff -ur a/build-aux/install-sh b/build-aux/install-sh +--- a/build-aux/install-sh 2006-03-25 20:04:46 +0000 ++++ b/build-aux/install-sh 2007-09-14 10:53:29 +0100 +@@ -246,7 +246,7 @@ + fi + + if test -n "$dir_arg"; then +- $doit $mkdircmd "$dst" \ ++ { test -d "$dst" || $doit $mkdircmd -p "$dst"; } \ + && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ |