diff options
author | 2017-12-08 17:47:30 +0100 | |
---|---|---|
committer | 2017-12-09 20:25:27 +1100 | |
commit | 8c3df282744fd5ef80fbc49b273f7830c858f93b (patch) | |
tree | dd2460fb96b62bbdf346831d9d5bd5636e8f5674 /dev-libs/libite/files/libite-2.0.0-fix-which-path.patch | |
parent | app-backup/*: Update Manifest hashes (diff) | |
download | gentoo-8c3df282744fd5ef80fbc49b273f7830c858f93b.tar.gz gentoo-8c3df282744fd5ef80fbc49b273f7830c858f93b.tar.bz2 gentoo-8c3df282744fd5ef80fbc49b273f7830c858f93b.zip |
dev-libs/libite: fix failing tests
* This commit adds two patches from upstream
They should be removed as soon as upstream
releases new version.
Closes: https://bugs.gentoo.org/640202
Closes: https://github.com/gentoo/gentoo/pull/6481
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'dev-libs/libite/files/libite-2.0.0-fix-which-path.patch')
-rw-r--r-- | dev-libs/libite/files/libite-2.0.0-fix-which-path.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch b/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch new file mode 100644 index 000000000000..301c43715890 --- /dev/null +++ b/dev-libs/libite/files/libite-2.0.0-fix-which-path.patch @@ -0,0 +1,25 @@ +diff --git a/tests/which.c b/tests/which.c +index 46dcccf..cda57c6 100644 +--- a/tests/which.c ++++ b/tests/which.c +@@ -11,13 +11,13 @@ int main(void) + int result = 0; + size_t i; + struct tc test[] = { +- { "ls", 1 }, +- { "free", 1 }, +- { "modinfo", 1 }, +- { "useradd", 1 }, +- { "/bin/which", 1 }, +- { "/bin/ps aux", 1 }, +- { "/etc/passwd", 0 }, ++ { "ls", 1 }, ++ { "free", 1 }, ++ { "modinfo", 1 }, ++ { "useradd", 1 }, ++ { "/usr/bin/which", 1 }, ++ { "/bin/ps aux", 1 }, ++ { "/etc/passwd", 0 }, + { NULL, 0 } + }; + |