diff options
author | Tom Tromey <tromey@redhat.com> | 2005-07-06 22:12:18 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2005-07-06 22:12:18 +0000 |
commit | c73739cfe3afe415bb0a68ff44c34cdffd0e8463 (patch) | |
tree | e7b3d5e95be0167ebcf0e9c9c9e49e301307f372 /lib/gen-classlist.sh.in | |
parent | cee207d3b69cb152ca39e65f93f5a6f726a59a79 (diff) | |
download | classpath-c73739cfe3afe415bb0a68ff44c34cdffd0e8463.tar.gz |
* lib/Makefile.gcj: New file.
* lib/Makefile.am (JAVAC): Changed for new gcj build approach.
* lib/gen-classlist.sh.in: Don't split list for gcj.
* lib/split-for-gcj.sh: New file.
Diffstat (limited to 'lib/gen-classlist.sh.in')
-rwxr-xr-x | lib/gen-classlist.sh.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/gen-classlist.sh.in b/lib/gen-classlist.sh.in index 36e342063..c091caa20 100755 --- a/lib/gen-classlist.sh.in +++ b/lib/gen-classlist.sh.in @@ -84,13 +84,4 @@ if test "$new" = "true"; then done fi -# Split in multiple parts for gcj -grep -v /javax/ classes | grep -v /awt/ \ - | grep -v /beans/ \ - | grep -v /xml/ > classes.standard -grep /awt/ classes > classes.awt -grep /beans/ classes >> classes.awt -grep /xml/ classes > classes.xml -grep /javax/ classes | grep -v /xml/ > classes.standardx - exit 0 |