From 9c71fa59737b4265821343abb5e46efd2d6733d3 Mon Sep 17 00:00:00 2001 From: Tim Landscheidt Date: Mar 12 2023 13:50:25 +0000 Subject: Fix escapes --- diff --git a/guidelines/modules/ROOT/pages/Ansible_collections.adoc b/guidelines/modules/ROOT/pages/Ansible_collections.adoc index 19158b3..43fb3bb 100644 --- a/guidelines/modules/ROOT/pages/Ansible_collections.adoc +++ b/guidelines/modules/ROOT/pages/Ansible_collections.adoc @@ -350,7 +350,7 @@ This macro simply runs `+ansible-galaxy collection build+`. This macro pulls out the collection namespace, name, and version from `+galaxy.yml+` and then uses it to run `+ansible-galaxy collection install+`. -After that, it writes out `+%{ansible_collection_filelist}` based on the +After that, it writes out `+%{ansible_collection_filelist}+` based on the metadata it previously extracted diff --git a/guidelines/modules/ROOT/pages/Perl.adoc b/guidelines/modules/ROOT/pages/Perl.adoc index e782c76..f0a4fe5 100644 --- a/guidelines/modules/ROOT/pages/Perl.adoc +++ b/guidelines/modules/ROOT/pages/Perl.adoc @@ -47,7 +47,7 @@ It is recommended to include explicit dependencies for core modules, because the === Versioned MODULE_COMPAT_ Requires or `+perl-libs+` -Packages with Perl modules installed in %{perl_vendorarch}, %{perl_vendorlib}, %{perl_privlib} or %{perl_archlib} will automatically gain dependency on `+perl-libs+` for pure Perl modules or a dependency on `+perl(:MODULE_COMPAT_)+` for libraries with compiled code. The dependency is handled by `+perl-generators+`. +Packages with Perl modules installed in %\{perl_vendorarch}, %\{perl_vendorlib}, %\{perl_privlib} or %\{perl_archlib} will automatically gain dependency on `+perl-libs+` for pure Perl modules or a dependency on `+perl(:MODULE_COMPAT_)+` for libraries with compiled code. The dependency is handled by `+perl-generators+`. Packages that require the Perl interpreter or `+libperl.so+` but do not install modules to the aforementioned directories or explicitly link to `+libperl.so.+` need to handle the dependency manually.