summaryrefslogtreecommitdiff
path: root/net-wireless
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-04-09 15:57:26 +0200
committerPacho Ramos <pacho@gentoo.org>2016-04-09 15:58:09 +0200
commitccda19a7dbc177cc713f1f94a558bf40a73d77c6 (patch)
tree9fa6443ba0b06043453d0fdebd3c5ed3688c6c42 /net-wireless
parent87a7c9e088d53465096140157dd39bc1ec1bc6f0 (diff)
downloadgentoo-ccda19a7dbc177cc713f1f94a558bf40a73d77c6.tar.gz
gentoo-ccda19a7dbc177cc713f1f94a558bf40a73d77c6.tar.xz
net-wireless/bluez: Commit forgotten patch (#579438)
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-wireless')
-rw-r--r--net-wireless/bluez/files/bluez-5.39-systemd-quote.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/net-wireless/bluez/files/bluez-5.39-systemd-quote.patch b/net-wireless/bluez/files/bluez-5.39-systemd-quote.patch
new file mode 100644
index 00000000000..d23c877eef8
--- /dev/null
+++ b/net-wireless/bluez/files/bluez-5.39-systemd-quote.patch
@@ -0,0 +1,38 @@
+From f554e152715a3c06a69954d9d4f15415c798e083 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert <floppym@gentoo.org>
+Date: Sun, 3 Apr 2016 14:30:02 -0400
+Subject: [PATCH] build: Quote systemd variable names
+
+If the systemd-m4 package has been installed, SYSTEMD_USERUNITDIR is
+defined as a macro. Quote this name to prevent macro expansion.
+
+Bug: https://bugs.gentoo.org/527432
+---
+ configure.ac | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 1679a47..4664003 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -216,7 +216,7 @@ if (test "${enable_systemd}" != "no" && test -z "${path_systemunitdir}"); then
+ fi
+ AC_MSG_RESULT([${path_systemunitdir}])
+ fi
+-AC_SUBST(SYSTEMD_SYSTEMUNITDIR, [${path_systemunitdir}])
++AC_SUBST([SYSTEMD_SYSTEMUNITDIR], [${path_systemunitdir}])
+
+ AC_ARG_WITH([systemduserunitdir],
+ AC_HELP_STRING([--with-systemduserunitdir=DIR],
+@@ -230,7 +230,7 @@ if (test "${enable_systemd}" != "no" && test -z "${path_userunitdir}"); then
+ fi
+ AC_MSG_RESULT([${path_userunitdir}])
+ fi
+-AC_SUBST(SYSTEMD_USERUNITDIR, [${path_userunitdir}])
++AC_SUBST([SYSTEMD_USERUNITDIR], [${path_userunitdir}])
+
+ AC_ARG_ENABLE(datafiles, AC_HELP_STRING([--disable-datafiles],
+ [do not install configuration and data files]),
+--
+2.8.0
+