]> git.ipfire.org Git - ipfire-2.x.git/blame - src/patches/collectd/0013-add-missing-backticks-which-broke-the-build.patch
core91: Add changed pppsetup.cgi and language files
[ipfire-2.x.git] / src / patches / collectd / 0013-add-missing-backticks-which-broke-the-build.patch
CommitLineData
2056dd30
AM
1From 497f5785e8b385f03b5fb5b15bdff8ba39e4699e Mon Sep 17 00:00:00 2001
2From: Marc Fournier <marc.fournier@camptocamp.com>
3Date: Mon, 23 Jun 2014 18:00:01 +0200
4Subject: [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
10diff --git a/configure.in b/configure.in
11index 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--
391.9.3
40