view scripts/@ftp/module.mk @ 33561:3485012a415a default tip @

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 10 May 2024 13:42:19 +0200
parents 8308417aff1c
children
line wrap: on
line source

## Automake fails to process "include %reldir%/module.mk" in the directory
## above.  All of the commands which would normally be in this file were
## manually placed in scripts/module.mk to avoid using the "include" directive.
##
## This is an Automake bug.  Automake has switched to a Perl backend which uses
## the following pattern to detect a path:
##
## my $PATH_PATTERN = '(\w|[+/.-])+';
##
## This pattern only includes alphanumeric, '_', and [+/.-], but not "@".