view scripts/@ftp/module.mk @ 31220:5b021ecc8bfe stable

pie3: Fix "Too many input" args error. * __pie__.m (update_text_pos): Change prototype to match the expected number of input arguments.
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Wed, 31 Aug 2022 22:01:39 +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 "@".