diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-08 18:02:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-08 18:02:51 +0000 |
commit | 0354cc2108d291297add2833f4dccd242b997826 (patch) | |
tree | b0b783203a5df0a8f1ad790b2325c45ba40661f1 /sys-devel/automake/files | |
parent | x86 stable per bug 362185 (diff) | |
download | gentoo-2-0354cc2108d291297add2833f4dccd242b997826.tar.gz gentoo-2-0354cc2108d291297add2833f4dccd242b997826.tar.bz2 gentoo-2-0354cc2108d291297add2833f4dccd242b997826.zip |
Add fix by Petteri Räty for java handling #362323.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
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"); ++ } + } + + + |