Ryan Schmidt <[email protected]> writes: >>> clang: error: unknown argument: '-R/opt/local/lib' >> >> Could you provide the full build log? > > Sure, here it is: > > http://ryandesign.com/tmp/tuxtype-1.8.3.main.log > > As far as I can tell, libtool is not being used; the flags are going > directly to the compiler. > > The source can be downloaded from > git://git.debian.org/git/tux4kids/tuxtype.git
Looking at the code, I'd say this is a bug in tuxtype. In tuxtype/src/Makefile.am: LDADD = @LIBINTL@ tuxtype_LDFLAGS = $(LTLIBINTL) If tuxtype doesn't use libtool, it should use $(LIBINTL) instead of $(LTLIBINTL): https://www.gnu.org/software/gettext/manual/gettext.html#src_002fMakefile However, $(LIBINTL) is already supplied through LDADD, maybe you could simply remove the second line? Regards, -- Daiki Ueno
