summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2020-04-30 19:52:28 +0000
committerRay Strode <halfline@gmail.com>2020-04-30 19:52:28 +0000
commitfb0c97485d90a37ecd870810d2152c7442a9e84c (patch)
tree3fb017a34a89bd236d9b30cb72dbc1a7b80e1c1c /docs
parentde884de7b69647bead3081222aa1c2be443e351f (diff)
downloadgdm-fb0c97485d90a37ecd870810d2152c7442a9e84c.tar.gz
data: switch gdm.service.in to use cmake format
We're going to be switching to meson, and meson doesn't deal too well with an @ in the configuration file that's not part of a substitution variable. This commit switches the gdm service over to use a cmake style of substitution variables, so we can later tell meson to use configure in cmake mode and workaround the @ confusion.
Diffstat (limited to 'docs')
-rw-r--r--docs/LINGUAS22
-rw-r--r--docs/Makefile.am2
-rw-r--r--docs/meson.build6
3 files changed, 28 insertions, 2 deletions
diff --git a/docs/LINGUAS b/docs/LINGUAS
new file mode 100644
index 00000000..c7897364
--- /dev/null
+++ b/docs/LINGUAS
@@ -0,0 +1,22 @@
+ca
+cs
+de
+el
+en_GB
+es
+fr
+gl
+hu
+id
+it
+ko
+oc
+pt_BR
+ro
+ru
+sl
+sv
+te
+tr
+uk
+zh_CN
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 7e7fac64..ed20a002 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -5,5 +5,3 @@ HELP_ID = gdm
HELP_FILES = \
index.docbook \
legal.xml
-
-HELP_LINGUAS = ca cs de el en_GB es fr gl hu id it ko oc pt_BR ro ru sl sv te tr uk zh_CN
diff --git a/docs/meson.build b/docs/meson.build
new file mode 100644
index 00000000..52bac4ca
--- /dev/null
+++ b/docs/meson.build
@@ -0,0 +1,6 @@
+gnome.yelp(meson.project_name(),
+ sources: [
+ 'index.docbook',
+ 'legal.xml',
+ ],
+)