Blame SOURCES/netcf-fix-autogen-build-error.patch
|
|
e1da54 |
From 576e913f6fbce1a3428ad16af2c3e94544b862e7 Mon Sep 17 00:00:00 2001
|
|
|
e1da54 |
From: Laine Stump <laine@laine.org>
|
|
|
e1da54 |
Date: Wed, 22 Jan 2014 15:27:43 +0200
|
|
|
e1da54 |
Subject: [PATCH] fix autogen build error
|
|
|
e1da54 |
|
|
|
e1da54 |
This is also required for the fix for:
|
|
|
e1da54 |
|
|
|
e1da54 |
https://bugzilla.redhat.com/show_bug.cgi?id=1044681
|
|
|
e1da54 |
|
|
|
e1da54 |
A last minute change to the previous patch addressing a review comment
|
|
|
e1da54 |
managed to break an autogen, but I didn't notice because the error
|
|
|
e1da54 |
scrolled off the screen:
|
|
|
e1da54 |
|
|
|
e1da54 |
checking for system init flavor... ./configure: line 32046: systemd: command not found
|
|
|
e1da54 |
|
|
|
e1da54 |
(cherry picked from commit 9dabd473ce54a5264ae92a78d5e4019b864f6997)
|
|
|
e1da54 |
---
|
|
|
e1da54 |
configure.ac | 2 +-
|
|
|
e1da54 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
e1da54 |
|
|
|
e1da54 |
diff --git a/configure.ac b/configure.ac
|
|
|
e1da54 |
index 4dc415f..c9e0ad2 100644
|
|
|
e1da54 |
--- a/configure.ac
|
|
|
e1da54 |
+++ b/configure.ac
|
|
|
e1da54 |
@@ -139,7 +139,7 @@ fi
|
|
|
e1da54 |
|
|
|
e1da54 |
AM_CONDITIONAL([NETCF_USE_INITSCRIPTS], test "$with_sysinit" = "initscripts")
|
|
|
e1da54 |
AM_CONDITIONAL([NETCF_USE_SYSTEMD], test "$with_sysinit" = "systemd")
|
|
|
e1da54 |
-AM_CONDITIONAL([NETCF_TRANSACTION_SUPPORT], "$with_sysinit" != "none")
|
|
|
e1da54 |
+AM_CONDITIONAL([NETCF_TRANSACTION_SUPPORT], test "$with_sysinit" != "none")
|
|
|
e1da54 |
AC_MSG_RESULT($with_sysinit)
|
|
|
e1da54 |
if test "$with_sysinit" != "none" && test "$with_driver" != "redhat"; then
|
|
|
e1da54 |
AC_MSG_ERROR([netcf does not have support for $with_sysinit combined with the $with_driver driver])
|
|
|
e1da54 |
--
|
|
|
e1da54 |
1.8.3.1
|
|
|
e1da54 |
|