Subject: Re: Freetype2, the bug explained
To: None <tech-pkg@NetBSD.org>
From: Alan Barrett <apb@cequrux.com>
List: tech-pkg
Date: 04/14/2004 15:13:11
On Wed, 14 Apr 2004, Julio M. Merino Vidal wrote:
> Could you try to add the following line in freetype2:
>
> MAKE_FLAGS+= INSTALL_DATA="${INSTALL_DATA}"
If something like this is needed, then it should be more like
MAKE_FLAGS+= INSTALL_DATA=${INSTALL_DATA:Q}
Almost any time you want to quote a variable in a Makefile, it should
be done with :Q, not with "".
--apb (Alan Barrett)