72bcb1
diff --git a/7133138.patch b/7133138.patch
72bcb1
new file mode 100644
72bcb1
index 0000000..882f15f
72bcb1
--- /dev/null
72bcb1
+++ b/7133138.patch
72bcb1
@@ -0,0 +1,38 @@
72bcb1
+--- sun/tools/javazic/Mappings.java.orig       2015-04-13 12:44:10.000000000 -0400
72bcb1
++++ sun/tools/javazic/Mappings.java    2015-04-13 12:45:28.000000000 -0400
72bcb1
+@@ -1,5 +1,5 @@
72bcb1
+ /*
72bcb1
+- * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
72bcb1
++ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
72bcb1
+  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
72bcb1
+  *
72bcb1
+  * This code is free software; you can redistribute it and/or modify it
72bcb1
+@@ -26,6 +26,7 @@
72bcb1
+ package sun.tools.javazic;
72bcb1
+ 
72bcb1
+ import        java.util.ArrayList;
72bcb1
++import java.util.HashMap;
72bcb1
+ import        java.util.LinkedList;
72bcb1
+ import        java.util.List;
72bcb1
+ import        java.util.Map;
72bcb1
+@@ -162,6 +163,20 @@
72bcb1
+       for (String key : toBeRemoved) {
72bcb1
+           aliases.remove(key);
72bcb1
+       }
72bcb1
++        // Eliminate any alias-to-alias mappings. For example, if
72bcb1
++        // there are A->B and B->C, A->B is changed to A->C.
72bcb1
++        Map<String, String> newMap = new HashMap<String, String>();
72bcb1
++        for (String key : aliases.keySet()) {
72bcb1
++            String realid = aliases.get(key);
72bcb1
++            String leaf = realid;
72bcb1
++            while (aliases.get(leaf) != null) {
72bcb1
++                leaf = aliases.get(leaf);
72bcb1
++            }
72bcb1
++            if (!realid.equals(leaf)) {
72bcb1
++                newMap.put(key, leaf);
72bcb1
++            }
72bcb1
++        }
72bcb1
++        aliases.putAll(newMap);
72bcb1
+     }
72bcb1
+ 
72bcb1
+     Map<String,String> getAliases() {