diff options
author | Michael Koch <konqueror@gmx.de> | 2004-08-02 14:48:52 +0000 |
---|---|---|
committer | Michael Koch <konqueror@gmx.de> | 2004-08-02 14:48:52 +0000 |
commit | 29540215156e35204f1ee1cf96d0b530a818259a (patch) | |
tree | 323c601e1191946c7be67e31cfb413c8ad7bd791 /external | |
parent | 622e1e063afc1f9ed70c5fc0b4a8ee1ca8b9de15 (diff) | |
download | classpath-29540215156e35204f1ee1cf96d0b530a818259a.tar.gz |
2004-08-02 Michael Koch <konqueror@gmx.de>
* doc/api/Makefile.am,
external/Makefile.am,
lib/Makefile.am:
Fixed usage of find.
Diffstat (limited to 'external')
-rw-r--r-- | external/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/Makefile.am b/external/Makefile.am index c81a4dd11..fcb086f56 100644 --- a/external/Makefile.am +++ b/external/Makefile.am @@ -3,7 +3,7 @@ # When importing a new version of jaxp. # You need to add the output of the following command to the # jaxp_FILES in Makefile.am (remove the last \ from the last entry): -# $ for i in $(find jaxp -type f | grep -v CVS); do echo $i \\; done +# $ for i in $(find jaxp -type f -print | grep -v CVS); do echo $i \\; done jaxp_FILES = \ jaxp/source/gnu/xml/aelfred2/JAXPFactory.java \ |