From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5C42759CAF for ; Sat, 9 Apr 2016 13:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A23C321C016; Sat, 9 Apr 2016 13:58:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EA3C21C016 for ; Sat, 9 Apr 2016 13:58:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20521340BCF for ; Sat, 9 Apr 2016 13:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F3F27E for ; Sat, 9 Apr 2016 13:58:14 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1460210289.ccda19a7dbc177cc713f1f94a558bf40a73d77c6.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/bluez/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/bluez/files/bluez-5.39-systemd-quote.patch X-VCS-Directories: net-wireless/bluez/files/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: ccda19a7dbc177cc713f1f94a558bf40a73d77c6 X-VCS-Branch: master Date: Sat, 9 Apr 2016 13:58:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b9fd380d-7906-476a-8c19-28b4fe51e33c X-Archives-Hash: a4fb460e6d59242f2875a75bc0f803a0 commit: ccda19a7dbc177cc713f1f94a558bf40a73d77c6 Author: Pacho Ramos gentoo org> AuthorDate: Sat Apr 9 13:57:26 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Apr 9 13:58:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccda19a7 net-wireless/bluez: Commit forgotten patch (#579438) Package-Manager: portage-2.2.28 .../bluez/files/bluez-5.39-systemd-quote.patch | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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 0000000..d23c877 --- /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 +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 +