mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-09 23:54:39 +02:00
This is not a security tool, it is a support library that is needed for vgauth in open-vm-tools and can also be used by libreoffice. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 0c38c6864e7ba8f53a657d87894f24374a6a4932 Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Tue, 30 Dec 2014 11:18:17 +0800
|
|
Subject: [PATCH] examples: allow build in separate dir
|
|
|
|
Upstream-Status: Inappropriate [ OE specific ]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
|
|
---
|
|
examples/Makefile | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/examples/Makefile b/examples/Makefile
|
|
index c1cbcca..3f1bd14 100644
|
|
--- a/examples/Makefile
|
|
+++ b/examples/Makefile
|
|
@@ -12,8 +12,10 @@ ifndef CC
|
|
CC = gcc
|
|
endif
|
|
|
|
-CFLAGS += -I../include -g $(shell PKG_CONFIG_PATH=.. pkg-config --cflags xmlsec1 ) -DUNIX_SOCKETS
|
|
-LDLIBS += -L../src/.libs -g $(shell PKG_CONFIG_PATH=.. pkg-config --libs xmlsec1 )
|
|
+top_srcdir = ..
|
|
+top_builddir = ..
|
|
+CFLAGS += -I$(top_srcdir)/include -g $(shell PKG_CONFIG_PATH=$(top_srcdir) pkg-config --cflags xmlsec1 ) -DUNIX_SOCKETS
|
|
+LDLIBS += -L$(top_builddir)/src/.libs -g $(shell PKG_CONFIG_PATH=$(top_srcdir) pkg-config --libs xmlsec1 )
|
|
|
|
DESTDIR = /usr/share/xmlsec1
|
|
install-ptest:
|