diff options
author | Javier Villavicencio <the_paya@gentoo.org> | 2010-03-24 11:09:09 +0000 |
---|---|---|
committer | Javier Villavicencio <the_paya@gentoo.org> | 2010-03-24 11:09:09 +0000 |
commit | 4c569f1609f7e0d80f8d10d572b8465623a8588c (patch) | |
tree | eb90f9255cbb2db03361e7aeea58b3686a768bb8 /sys-freebsd/freebsd-ubin/files | |
parent | /usr/bin/install patch to avoid parallel make install bugs. (diff) | |
download | gentoo-2-4c569f1609f7e0d80f8d10d572b8465623a8588c.tar.gz gentoo-2-4c569f1609f7e0d80f8d10d572b8465623a8588c.tar.bz2 gentoo-2-4c569f1609f7e0d80f8d10d572b8465623a8588c.zip |
Typo in patch comment.
(Portage version: 2.2_rc67/cvs/FreeBSD i386)
Diffstat (limited to 'sys-freebsd/freebsd-ubin/files')
-rw-r--r-- | sys-freebsd/freebsd-ubin/files/freebsd-ubin-8.0-xinstall.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-freebsd/freebsd-ubin/files/freebsd-ubin-8.0-xinstall.patch b/sys-freebsd/freebsd-ubin/files/freebsd-ubin-8.0-xinstall.patch index 099c0437211e..e8f978aabc9e 100644 --- a/sys-freebsd/freebsd-ubin/files/freebsd-ubin-8.0-xinstall.patch +++ b/sys-freebsd/freebsd-ubin/files/freebsd-ubin-8.0-xinstall.patch @@ -14,7 +14,7 @@ fails as often as it does on Gentoo/FreeBSD, if it uses /usr/bin/install. err(EX_OSERR, "mkdir %s", path); /* NOTREACHED */ + } else if (mkdir(path, 0755) < 0) { -+ /* Previos errno from stat() says that the directory didn't exist (ENOENT) ++ /* Previous errno from stat() says that the directory didn't exist (ENOENT) + * But if errno is now EEXIST, then we just hit a parallel make bug. + */ + if (errno == EEXIST) |