From 3ae41aea11bc590ef9620a963a9ebf59c433c8ad Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 27 Jan 2014 19:43:49 +0100 Subject: [PATCH] Path with spaces don't work well Use wildcards to avoid bad splitting of path argument on spaces. --- sys-libs/mesa/mesa-10.0.2.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/mesa/mesa-10.0.2.recipe b/sys-libs/mesa/mesa-10.0.2.recipe index 1fe2bf151..c3f515310 100644 --- a/sys-libs/mesa/mesa-10.0.2.recipe +++ b/sys-libs/mesa/mesa-10.0.2.recipe @@ -98,11 +98,11 @@ INSTALL() # swpipe renderer package packageEntries swpipe \ - "$addOnsDir/opengl/Software Pipe" + "$addOnsDir/opengl/*Pipe" # swrast renderer package packageEntries swrast \ - "$addOnsDir/opengl/Software Rasterizer" + "$addOnsDir/opengl/*Rasterizer" } # ----- devel package -------------------------------------------------------