* "Fabian Groffen (grobian)" <grob...@gentoo.org>: > grobian 12/08/07 15:21:54 > > Modified: ChangeLog > Added: XML-Parser-2.410.0-r1.ebuild > Log: > Fix expat detection for FreeBSD that silently went unnoticed.
The following single quotes were dropped: -myconf="EXPATLIBPATH='${EPREFIX}/usr/$(get_libdir)' EXPATINCPATH='${EPREFIX}/usr/include'" +myconf="EXPATLIBPATH=${EPREFIX}/usr/$(get_libdir) EXPATINCPATH=${EPREFIX}/usr/include" Sorry, I don't understand the problem. Is it a general problem with the single quote or a special FreeBSD problem? I think we should convert all myconf strings to arrays: myconf=( EXPATLIBPATH="${EPREFIX}"/usr/$(get_libdir) EXPATINCPATH="${EPREFIX}"/usr/include ) -- Thanks