Hi, it's me again. There's a problem with x11/Makefile.in. You have in there: mandir=${DESTDIR}@mandir@/man1 ... install: $(INSTALL) -d ${bindir} $(INSTALL) -d ${mandir} $(INSTALL) cfclient ${bindir}/cfclient $(INSTALL) -m 444 cfclient.man ${mandir}/cfclient.6 As you can see, you install a man.6 file to man1 dir. mandir should have man6 instead. For reference, gtk/Makefile.in is correct. mandir=${DESTDIR}@mandir@/man6 ... install: $(INSTALL) -d ${bindir} $(INSTALL) -d ${mandir} $(INSTALL) gcfclient ${bindir}/gcfclient $(INSTALL) -m 444 gcfclient.man ${mandir}/gcfclient.6