From e8b3bbb9d553369748ec8b3059e09b1f14870297 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 16 Aug 2014 14:09:13 +0300 Subject: [PATCH] systemd: fix pkgconf --- .../patches/systemd-00_fix-pkgconf.patch | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 packages/sysutils/systemd/patches/systemd-00_fix-pkgconf.patch diff --git a/packages/sysutils/systemd/patches/systemd-00_fix-pkgconf.patch b/packages/sysutils/systemd/patches/systemd-00_fix-pkgconf.patch new file mode 100644 index 0000000000..055899e247 --- /dev/null +++ b/packages/sysutils/systemd/patches/systemd-00_fix-pkgconf.patch @@ -0,0 +1,63 @@ +From 8eade3f4d12255d1802433447b5fee53b44ff4f4 Mon Sep 17 00:00:00 2001 +From: Stefan Saraev +Date: Sat, 16 Aug 2014 14:06:18 +0300 +Subject: [PATCH] fix pkgconf + +--- + src/gudev/gudev-1.0.pc.in | 6 +++--- + src/libsystemd/libsystemd.pc.in | 6 +++--- + src/libudev/libudev.pc.in | 6 +++--- + 3 files changed, 9 insertions(+), 9 deletions(-) + +diff --git a/src/gudev/gudev-1.0.pc.in b/src/gudev/gudev-1.0.pc.in +index 058262d..84d6b8b 100644 +--- a/src/gudev/gudev-1.0.pc.in ++++ b/src/gudev/gudev-1.0.pc.in +@@ -1,7 +1,7 @@ + prefix=@prefix@ +-exec_prefix=@exec_prefix@ +-libdir=@libdir@ +-includedir=@includedir@ ++exec_prefix=${prefix} ++libdir=${exec_prefix}/lib ++includedir=${prefix}/include + + Name: gudev-1.0 + Description: GObject bindings for libudev +diff --git a/src/libsystemd/libsystemd.pc.in b/src/libsystemd/libsystemd.pc.in +index e8f7950..127e9ea 100644 +--- a/src/libsystemd/libsystemd.pc.in ++++ b/src/libsystemd/libsystemd.pc.in +@@ -6,9 +6,9 @@ + # (at your option) any later version. + + prefix=@prefix@ +-exec_prefix=@exec_prefix@ +-libdir=@libdir@ +-includedir=@includedir@ ++exec_prefix=${prefix} ++libdir=${exec_prefix}/lib ++includedir=${prefix}/include + + Name: systemd + Description: systemd Library +diff --git a/src/libudev/libudev.pc.in b/src/libudev/libudev.pc.in +index a0f3f52..5582559 100644 +--- a/src/libudev/libudev.pc.in ++++ b/src/libudev/libudev.pc.in +@@ -6,9 +6,9 @@ + # (at your option) any later version. + + prefix=@prefix@ +-exec_prefix=@exec_prefix@ +-libdir=@libdir@ +-includedir=@includedir@ ++exec_prefix=${prefix} ++libdir=${exec_prefix}/lib ++includedir=${prefix}/include + + Name: libudev + Description: Library to access udev device information +-- +1.7.2.5 +