On Thu, Apr 28, 2016 at 05:54:33PM +0200, Andrea Bolognani wrote:
If we didn't find a match, either because we're cross
compiling
or because we're not building on RHEL, we won't install any
init script.
Make sure this is reported correctly in the configure summary.
---
configure.ac | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
ACK
diff --git a/configure.ac b/configure.ac
index de5f430..4b92e85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -647,10 +647,19 @@ case "$with_init_script" in
none)
;;
check)
- if test "$cross_compiling" != yes && test -f
/etc/redhat-release; then
+ if test "$cross_compiling" = yes
+ then
We put "then" on the same line as "if" elsewhere in the file.
Jan