It was thus said that the Great David Griffith once stated:
I'm trying to get TME[1], a Sun emulator, compiled and I'm running into
trouble. First, the Makefile is set to interpret all warnings as errors,
so I can't get past the complaint about libtme/module.c assigning a value
to a variable but not doing anything with it. I disabled this in
configure.in, but when I rebuild the configure script with
aclocal && automake -a -c -f && autoconf, I get a complaint like this:
thoth:/usr/local/src/tme-0.8$ make
cd . && /bin/bash /usr/local/src/tme-0.8/missing --run automake-1.11 --gnu
Makefile.am:7: `pkglibdir' is not a legitimate directory for `DATA'
make: *** [Makefile.in] Error 1
Any ideas?
First off, get back to where you were getting the compiler error. Then
you have two options:
1) fix the offending code by removing the spurious assignment from
the C code.
2) In the master makefile, remove the option that tells the compiler
to consider warnings as errors.
-spc (#2 is probably the easier and safer choice if you don't feel
comfortable with C)