Saturday, December 13, 2008

/usr/lib64: file not recognized: Is a directory

I have seen this error several times when compiling and the solution is always the same:

Edit the Makefile and replace:
LDFLAGS = -L /usr/lib64
for:
LDFLAGS = -L/usr/lib64
(remove the space between the -L and /usr/lib64)

0 comentarios: