]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/collectd/0013-add-missing-backticks-which-broke-the-build.patch
Merge branch 'master' into next
[ipfire-2.x.git] / src / patches / collectd / 0013-add-missing-backticks-which-broke-the-build.patch
1 From 497f5785e8b385f03b5fb5b15bdff8ba39e4699e Mon Sep 17 00:00:00 2001
2 From: Marc Fournier <marc.fournier@camptocamp.com>
3 Date: Mon, 23 Jun 2014 18:00:01 +0200
4 Subject: [PATCH 13/22] add missing backticks which broke the build
5
6 ---
7 configure.in | 6 +++---
8 1 file changed, 3 insertions(+), 3 deletions(-)
9
10 diff --git a/configure.in b/configure.in
11 index 7086800..5dac543 100644
12 --- a/configure.in
13 +++ b/configure.in
14 @@ -3766,7 +3766,7 @@ then
15 then
16 with_libxml2="no"
17 fi
18 - with_libxml2_ldflags="$PKG_CONFIG --libs libxml-2.0`"
19 + with_libxml2_ldflags="`$PKG_CONFIG --libs libxml-2.0`"
20 if test $? -ne 0
21 then
22 with_libxml2="no"
23 @@ -3806,12 +3806,12 @@ if test "x$with_libxml2" = "xyes"; then
24 fi
25 if test "x$with_libvirt" = "xyes"
26 then
27 - with_libvirt_cflags="$PKG_CONFIG --cflags libvirt`"
28 + with_libvirt_cflags="`$PKG_CONFIG --cflags libvirt`"
29 if test $? -ne 0
30 then
31 with_libvirt="no"
32 fi
33 - with_libvirt_ldflags="$PKG_CONFIG --libs libvirt`"
34 + with_libvirt_ldflags="`$PKG_CONFIG --libs libvirt`"
35 if test $? -ne 0
36 then
37 with_libvirt="no"
38 --
39 1.9.3
40