This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
make clean-target fails at x86_64-unknown-linux-gnu/32/libjava
- From: "Manuel López-Ibáñez" <lopezibanez at gmail dot com>
- To: "GCC Gnu.org List" <gcc at gcc dot gnu dot org>
- Date: Sat, 14 Jul 2007 09:18:07 +0100
- Subject: make clean-target fails at x86_64-unknown-linux-gnu/32/libjava
make clean-target fails at x86_64-unknown-linux-gnu/32/libjava when
doing target 'mostlyclean-local' because it tries to execute:
find . -name '*.lo' -print | xargs /bin/sh ./libtool rm -f
and we get:
libtool: error: you must specify a MODE.
when it should execute:
find . -name '*.lo' -print | xargs /bin/sh ./libtool --mode=clean rm -f
I don't have any idea of autotools but it would be nice to provide a
fix. How can I fix this?
Cheers,
Manuel.