diff mbox

[v6,4/5] pkgconf: rewrite variable sdkdir, needed by xdriver_xf86-video-intel

Message ID BLU0-SMTP316AB12B933108688B43F8BD9760@phx.gbl
State Superseded
Headers show

Commit Message

Bernd Kuhls March 12, 2014, 7:42 p.m. UTC
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
v3: no changes
v2: no changes

 package/pkgconf/pkgconf-fix-variable.patch |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Jerzy Grzegorek March 12, 2014, 10:16 p.m. UTC | #1
Hi Bernd,

> Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
> ---
> v3: no changes
> v2: no changes
>
>   package/pkgconf/pkgconf-fix-variable.patch |    4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

/Shouldn't you rename this patch on/

pkgconf-01-fix-variable.patch

Regards,
Jerzy

>
> diff --git a/package/pkgconf/pkgconf-fix-variable.patch b/package/pkgconf/pkgconf-fix-variable.patch
> index e19f76c..4c213d6 100644
> --- a/package/pkgconf/pkgconf-fix-variable.patch
> +++ b/package/pkgconf/pkgconf-fix-variable.patch
> @@ -7,17 +7,19 @@ This is sometimes used to find header files (E.G. in gst-plugins configure),
>   so ensure the sysroot'ed files are used.
>   
>   Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> +Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
>   
>   diff -Nura pkgconf-0.8.9.orig/main.c pkgconf-0.8.9/main.c
>   --- pkgconf-0.8.9.orig/main.c	2012-10-24 14:32:08.236508699 -0300
>   +++ pkgconf-0.8.9/main.c	2012-10-24 14:54:36.771070217 -0300
> -@@ -298,7 +298,12 @@
> +@@ -298,7 +298,13 @@
>    	if (eflag != PKG_ERRF_OK)
>    		return false;
>    
>   -	printf("%s\n", req.buf);
>   +	if ( !strcmp(req.variable, "includedir") ||
>   +	  !strcmp(req.variable, "mapdir") ||
> ++	  !strcmp(req.variable, "sdkdir") ||
>   +	  !strcmp(req.variable, "libdir"))
>   +		printf("%s%s\n", sysroot_dir, req.buf);
>   +	else
diff mbox

Patch

diff --git a/package/pkgconf/pkgconf-fix-variable.patch b/package/pkgconf/pkgconf-fix-variable.patch
index e19f76c..4c213d6 100644
--- a/package/pkgconf/pkgconf-fix-variable.patch
+++ b/package/pkgconf/pkgconf-fix-variable.patch
@@ -7,17 +7,19 @@  This is sometimes used to find header files (E.G. in gst-plugins configure),
 so ensure the sysroot'ed files are used.
 
 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
 
 diff -Nura pkgconf-0.8.9.orig/main.c pkgconf-0.8.9/main.c
 --- pkgconf-0.8.9.orig/main.c	2012-10-24 14:32:08.236508699 -0300
 +++ pkgconf-0.8.9/main.c	2012-10-24 14:54:36.771070217 -0300
-@@ -298,7 +298,12 @@
+@@ -298,7 +298,13 @@
  	if (eflag != PKG_ERRF_OK)
  		return false;
  
 -	printf("%s\n", req.buf);
 +	if ( !strcmp(req.variable, "includedir") ||
 +	  !strcmp(req.variable, "mapdir") ||
++	  !strcmp(req.variable, "sdkdir") ||
 +	  !strcmp(req.variable, "libdir"))
 +		printf("%s%s\n", sysroot_dir, req.buf);
 +	else