gnu: Escape @ in the perl-importer package description.

@EXPORT is interpreted as a texinfo command, therefore the @ needs
escaping. This was causing a test failure in the guix-package.sh file.

* gnu/packages/perl.scm (perl-importer)[description]: Escape @.
This commit is contained in:
Christopher Baines 2017-08-29 20:15:46 +01:00
parent 69dcad33c8
commit 02654c47b2
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -3514,7 +3514,7 @@ (define-public perl-importer
consume exports. It is feature-compatible with Exporter, plus some much needed consume exports. It is feature-compatible with Exporter, plus some much needed
extras. You can use this to import symbols from any exporter that follows extras. You can use this to import symbols from any exporter that follows
Exporters specification. The exporter modules themselves do not need to use or Exporters specification. The exporter modules themselves do not need to use or
inherit from the Exporter module, they just need to set @EXPORT and/or other inherit from the Exporter module, they just need to set @@EXPORT and/or other
variables.") variables.")
(license (package-license perl)))) (license (package-license perl))))