Andrew Haley writes: > Charles Blaine writes: > > Building GCC 4.1.1 fails with both GCC 3.4.6 and 4.1.0 as provided by Red Hat > > (at the same spot) > > > > Building from source is a requirement for us. Any ideas? > > > > > > mkdir build > > > > cd build > > > > ../gcc-4.1.1/configure --prefix=/my/path --disable-shared > > > > make bootstrap > > ... > > make[7]: Entering directory > > `/utopia/tmp/build/i686-pc-linux-gnu/libjava/classpath/native/jni/midi-alsa' > > make[7]: *** No rule to make target > > `gnu_javax_sound_midi_alsa_AlsaMidiSequencerDevice.c', needed by > > `gnu_javax_sound_midi_alsa_AlsaMidiSequencerDevice.lo'. Stop. > > I can't remember seeing anything like this before. This file should > be present as > gcc/classpath/native/jni/midi-alsa/.svn/text-base/gnu_javax_sound_midi_alsa_AlsaMidiSequencerDevice.c Typo, sorry gcc/libjava/classpath/native/jni/midi-alsa/gnu_javax_sound_midi_alsa_AlsaMidiSequencerDevice.c > > Is it present in your source tree? > > It is possible that using a relative path to configure is screwing > things up. Try > > /utopia/tmp/configure --prefix=/my/path --disable-shared > > Andrew.