mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
14 lines
736 B
Diff
14 lines
736 B
Diff
The single-quoted comma causes autoconf to generate an invalid configure script
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -184,7 +184,7 @@
|
|
AS_IF([test "$with_session_tracking" = "none"], with_session_tracking=no)
|
|
# check value
|
|
AS_IF([! (echo "$with_session_tracking" | grep -q -E "^(systemd|consolekit|no)$")],
|
|
- AC_MSG_ERROR([--with-session-tracking must be systemd/consolekit/no, not $with_session_tracking]))
|
|
+ AC_MSG_ERROR([[--with-session-tracking must be systemd/consolekit/no, not $with_session_tracking]]))
|
|
# add conditionals and subtitution
|
|
AM_CONDITIONAL(SESSION_TRACKING_CK, test "$with_session_tracking" = "consolekit")
|
|
AM_CONDITIONAL(SESSION_TRACKING_SYSTEMD, test "$with_session_tracking" = "systemd")
|