meson: fix indentation
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 4 Jan 2021 08:34:01 +0000 (17:34 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Jan 2021 22:04:19 +0000 (07:04 +0900)
src/resolve/meson.build

index 6cd62b848e24da63138adea14419fd18ee5a95b7..5c23fe43cefb1e8062569c5557073fc0ba387c3d 100644 (file)
@@ -131,12 +131,14 @@ systemd_resolved_sources += custom_target(
 systemd_resolved_dependencies = [threads, libgpg_error, libm]
 if conf.get('ENABLE_DNS_OVER_TLS') == 1
         if conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1
-                systemd_resolved_sources += files('resolved-dnstls-gnutls.c',
-                                                  'resolved-dnstls-gnutls.h')
+                systemd_resolved_sources += files(
+                        'resolved-dnstls-gnutls.c',
+                        'resolved-dnstls-gnutls.h')
                 systemd_resolved_dependencies += libgnutls
         elif conf.get('DNS_OVER_TLS_USE_OPENSSL') == 1
-                systemd_resolved_sources += files('resolved-dnstls-openssl.c',
-                                                  'resolved-dnstls-openssl.h')
+                systemd_resolved_sources += files(
+                        'resolved-dnstls-openssl.c',
+                        'resolved-dnstls-openssl.h')
                 systemd_resolved_dependencies += libopenssl
         else
                 error('unknown dependency for supporting DNS-over-TLS')