hotspot/agent/make/build-pkglist
author poonam
Wed, 27 Aug 2008 22:45:38 -0700
changeset 1073 3ca36e11142b
parent 1 489c9b5090e2
permissions -rw-r--r--
6731958: Include all the SA classes into sa-jdi.jar Summary: sa-jdi.jar bundled with JDK should include all the SA classes. Reviewed-by: swamyv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh -f
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
SH=`which sh`
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
MKS_HOME=`dirname $SH`
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
CD=cd
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
FIND=$MKS_HOME/find
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
SED=$MKS_HOME/sed
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
SORT=$MKS_HOME/sort
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
1073
3ca36e11142b 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 1
diff changeset
    11
$CD ../src/share/classes; $FIND sun/jvm/hotspot com/sun/java/swing -type d -print | $SED -e 's/\//./g' | $SORT > ../../../make/pkglist.txt