diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-06-01 20:47:01 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-06-02 09:45:04 +0200 |
commit | edfd864ab45c029bb590ab34c711cd269e140f09 (patch) | |
tree | a429c21dd3f049b48e72bc3438596069b2805e5c | |
parent | 559fe86c12065fc697e36cacb7074d46e46c1e3d (diff) |
make --enable-gtk4 work again
missing $ for test_gtk4 in...
commit 3d1f28dd1fbb2fe3f5b933a9d692fb4d033f08b6
Date: Sun May 30 18:19:40 2021 +0200
configure: Refactor platform defaults
Change-Id: I8f08ab5945fbd98e2ff9eeede83bfad324b1c44a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116558
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index dcb01d45a038..077684be36b4 100644 --- a/configure.ac +++ b/configure.ac @@ -11551,7 +11551,7 @@ AC_SUBST(GTK3_CFLAGS) GTK4_CFLAGS="" GTK4_LIBS="" -if test "test_gtk4" = yes -a "x$enable_gtk4" = "xyes"; then +if test "$test_gtk4" = yes -a "x$enable_gtk4" = "xyes"; then if test "$with_system_cairo" = no; then add_warning 'Non-system cairo combined with gtk4 is assumed to cause trouble; proceed at your own risk.' fi |