agent/make/build-pkglist

Tue, 18 Mar 2014 19:07:22 +0100

author
pliden
date
Tue, 18 Mar 2014 19:07:22 +0100
changeset 6413
595c0f60d50d
parent 746
25c3145237c6
child 6876
710a3c8b516e
permissions
-rw-r--r--

8029075: String deduplication in G1
Summary: Implementation of JEP 192, http://openjdk.java.net/jeps/192
Reviewed-by: brutisso, tschatzl, coleenp

duke@435 1 #!/bin/sh -f
duke@435 2
duke@435 3 SH=`which sh`
duke@435 4 MKS_HOME=`dirname $SH`
duke@435 5
duke@435 6 CD=cd
duke@435 7 FIND=$MKS_HOME/find
duke@435 8 SED=$MKS_HOME/sed
duke@435 9 SORT=$MKS_HOME/sort
duke@435 10
poonam@746 11 $CD ../src/share/classes; $FIND sun/jvm/hotspot com/sun/java/swing -type d -print | $SED -e 's/\//./g' | $SORT > ../../../make/pkglist.txt

mercurial