On Tue, Feb 25, 2003 at 09:48:41PM +0200, Tuomo Valkonen wrote: > * Xft support fixed
Instead of: EXTRA_LIBS += `xft-config --libs` EXTRA_INCLUDES += `xft-config --cflags` Why not: EXTRA_LIBS += $(shell xft-config --libs) EXTRA_INCLUDES += $(shell xft-config --cflags) That makes it easier to see which options are actually passed to gcc when building. /Pelle
