diff options
Diffstat (limited to 'sys-devel/automake/files')
-rw-r--r-- | sys-devel/automake/files/automake-1.11.1-check-java.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys-devel/automake/files/automake-1.11.1-check-java.patch b/sys-devel/automake/files/automake-1.11.1-check-java.patch new file mode 100644 index 000000000000..861a5f6c37dc --- /dev/null +++ b/sys-devel/automake/files/automake-1.11.1-check-java.patch @@ -0,0 +1,27 @@ +should be in upstream git now + +https://bugs.gentoo.org/362323 +http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8234 + +diff --git a/automake.in b/automake.in +index d74730d..a8ec749 100755 +--- a/automake.in ++++ b/automake.in +@@ -5121,8 +5121,14 @@ sub handle_java + $dir = $curs; + } + +- +- push (@all, 'class' . $dir . '.stamp'); ++ if ($dir eq 'check') ++ { ++ push (@check, "class$dir.stamp"); ++ } ++ else ++ { ++ push (@all, "class$dir.stamp"); ++ } + } + + + |