12 lines
264 B
Plaintext
12 lines
264 B
Plaintext
|
#!/bin/sh -f
|
||
|
|
||
|
SH=`which sh`
|
||
|
MKS_HOME=`dirname $SH`
|
||
|
|
||
|
CD=cd
|
||
|
FIND=$MKS_HOME/find
|
||
|
SED=$MKS_HOME/sed
|
||
|
SORT=$MKS_HOME/sort
|
||
|
|
||
|
$CD ../src/share/classes; $FIND sun/jvm/hotspot \( -name SCCS -prune \) -o -type d -print | $SED -e 's/\//./g' | $SORT > ../../../make/pkglist.txt
|