jenkins-core-weekly: update to 2.491
[oi-userland.git] / components / library / libsecret / patches / 02-rmdir.patch
blobb1947acb554204be39579fc58a27c87f48bcfa8b
1 On illumos it is not possible to remove current working directory of current
2 process. See also https://www.illumos.org/issues/16562
4 --- libsecret-0.21.4/tool/test-secret-tool.sh.orig
5 +++ libsecret-0.21.4/tool/test-secret-tool.sh
6 @@ -6,6 +6,7 @@
7 test -d "$testdir" || mkdir "$testdir"
9 cleanup () {
10 + cd ..
11 rm -rf "$testdir"
13 trap cleanup 0