diff options
author | Sebastian Pipping <sping@gentoo.org> | 2015-09-06 04:33:39 +0200 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2015-09-06 04:39:01 +0200 |
commit | 9d6418b6b36e0315ecd0f775c346f4ec4d536dce (patch) | |
tree | cba5fdff38732a2f4af330e29372afcf9087bac3 | |
parent | Add license header (with permission from both) (diff) | |
download | java-apicheck-9d6418b6b36e0315ecd0f775c346f4ec4d536dce.tar.gz java-apicheck-9d6418b6b36e0315ecd0f775c346f4ec4d536dce.tar.bz2 java-apicheck-9d6418b6b36e0315ecd0f775c346f4ec4d536dce.zip |
Workaround for java-config listing missing files
java-config Gentoo bug #557946
-rw-r--r-- | apicheck | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ generate_japi() { file=${1} shift debug && echo japize as ${file} packages $(java-config -r | tr : " ") "${@}" - japize as ${file} packages $(java-config -r | tr : " ") "${@}" || end 1 + japize as ${file} packages $(java-config -r | tr : " " | xargs ls -1 2>/dev/null) "${@}" || end 1 } listpackages() { |