From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastien Bourdelin Date: Thu, 13 Mar 2014 17:22:58 -0400 Subject: [Buildroot] [PATCH v6 2/5] mesa3d: modularize and bump to version 10.0.4 In-Reply-To: References: <1394653353-10904-1-git-send-email-berndkuhls@hotmail.com> <5322075D.20206@savoirfairelinux.com> Message-ID: <532221B2.9000506@savoirfairelinux.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hi, On 03/13/2014 05:06 PM, Bernd Kuhls wrote: > Hi, > > Sebastien Bourdelin > > wrote in news:5322075D.20206 at savoirfairelinux.com: > >>> + --with-egl-platforms=$(foreach subst >>> $(space),$(comma),$(MESA3D_EGL_PLATFORMS)) >> need quotes around the foreach for multiple selection ( example: >> --with-egl-platform='drm x11') > according to http://www.mesa3d.org/egl.html > > "Its argument is a comma separated string such as --with-egl- > platforms=x11,drm." > > Regards, Bernd Ok, so you must remove the foreach, else you will have "--with-egl-platforms=x11 drm" and not "--with-egl-platforms=x11,drm" and the others options won't be taken in consideration. Regards, Sebastien.